Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

13513039 - Ivan Andrianto #19

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
*.iml
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures
1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .idea/copyright/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 46 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

53 changes: 52 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,52 @@
# IF3111-2016-Tugas1-Android
# IF3111-2016-Tugas1-Android
# Tugas Besar 1 IF3111 Pengembangan Aplikasi pada Platform Khusus

## Asumsi
* Apabila user tidak memiliki koneksi Internet pada saat aplikasi dijalankan atau pada saat mensubmit answer, akan ditampilkan pesan

## Source Code
http://gitlab.informatika.org/ivanandrianto/Tubes1-Android/tree/master/app/src/main/java/ivanandrianto/com/tubes1

## Layout
http://gitlab.informatika.org/ivanandrianto/Tubes1-Android/tree/master/app/src/main/res/layout dan
http://gitlab.informatika.org/ivanandrianto/Tubes1-Android/tree/master/app/src/main/res/layout-land

## APK
File APK dihasilkan pada folder app/build/outputs/apk (Tidak ada di git karena terkena gitignore)

## Penggunaan
* Jalankan aplikasi
* Untuk menggunakan kamera, tekan tombol kamera. Kemudian pilih take photo
* Untuk menjawab (mengirim pesan ke server), tekan tombol message
Kemudian, pilih lokasi dari dropdown dan tekan submit. Server akan memberikan jawaban apakah response benar atau salah
Ulangi sampai server memberikan response status finish

## Screenshots
**Tampilan horizontal**

![alt text](https://lh3.googleusercontent.com/-KSsxkYP8Ekk/VvfNgI3Bp5I/AAAAAAAAJVQ/2P2H6B8mT8UF6vsaXkTVxR-IjKypZ2fJwCCo/s800-Ic42/Landscape%255B1%255D.png)

**Tampilan vertikal**

![alt text](https://lh3.googleusercontent.com/-DCJLIxQ0v5A/VvfNawTRrtI/AAAAAAAAJVQ/yJFr3ovDX_0AHJ31NeE__x5lpWE7H4ycwCCo/s512-Ic42/Start%255B1%255D.png)


**Tampilan *submit* jawaban**

![alt text](https://lh3.googleusercontent.com/--riZegZoRas/VvfNh7tfyoI/AAAAAAAAJVQ/FyqlFEEKNQUqfZIt_j3ukRB7qMxJgZz-wCCo/s512-Ic42/Answer%255B1%255D.png)


**Tampilan camera**

![alt text](https://lh3.googleusercontent.com/-QTyHsm5NeQ4/VvfNS9zBMdI/AAAAAAAAJU8/9QL67Z3rwvIcBT9DCayjCo8VM5ndlIn-wCCo/s512-Ic42/Camera%255B1%255D.png)


**Tampilan response jawaban**

![alt text](https://lh3.googleusercontent.com/-rUeX9vhrhqs/VvfaPPrENqI/AAAAAAAAJV0/hHnYzVIoUQMcRu3p2ovvddOLBeCfkczyACCo/s512-Ic42/Wrong_Answer%255B1%255D.png)


**Tampilan finish**

![alt text](https://lh3.googleusercontent.com/-aT2KflqMEP8/VvfNV58_AzI/AAAAAAAAJVQ/Cee2WxIZiasuSjnrmEfYk6lAy9cyw36fwCCo/s512-Ic42/Finish%255B1%255D.png)

2 changes: 2 additions & 0 deletions app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/build
!/build/outputs
28 changes: 28 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"

defaultConfig {
applicationId "ivanandrianto.com.tubes1"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.2.0'
compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.android.support:design:23.1.0'
}
Binary file added app/build/outputs/apk/app-debug-unaligned.apk
Binary file not shown.
Binary file added app/build/outputs/apk/app-debug.apk
Binary file not shown.
Loading