Skip to content
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.

33 changes: 32 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,32 @@
# IF3111-2016-Tugas1-Android
# Tugas Besar 1 IF3111 Pengembangan Aplikasi pada Platform Khusus
Jessica Handayani -13513069
***

## CapLocs
![alt text](http://i787.photobucket.com/albums/yy159/m00chi/splash_screen.png)

>CapLocs - Capture Your Locations! adalah sebuah aplikasi berbasis Android yang berisi quest-quest dimana pengguna harus mencari lokasi-lokasi yang terletak di ITB dan kemudian berfoto di lokasi tersebut. Pengguna kemudian dapat mengirimkan jawaban mengenai lokasi yang menjadi quest tersebut untuk dapat melanjutkan ke quest selanjutnya hingga selesai.

## Spesifikasi Aplikasi
* Aplikasi dapat menampilkan kompas, peta, dan lokasi dari pengguna, serta menandai lokasi yang harus dituju
![alt text](http://i787.photobucket.com/albums/yy159/m00chi/Mobile%20Uploads/Screenshot_20160328-113828.png)

![alt text](http://i787.photobucket.com/albums/yy159/m00chi/Mobile%20Uploads/Screenshot_20160328-115609.png)

* Aplikasi dapat menerima jawaban dari pengguna
![alt text](http://i787.photobucket.com/albums/yy159/m00chi/Mobile%20Uploads/Screenshot_20160328-113939.png))

* Aplikasi dapat memberikan respon berdasarkan jawaban pengguna.
- Jika jawaban pengguna benar, pengguna akan mendapat quest selanjutnya
- Jika jawaban pengguna salah, pengguna dapat menjawab kembali
- Jika quest selesai, akan diberikan pesan kepada pengguna

* Aplikasi dapat memanggil aplikasi Camera bawaan dan menyimpan hasil foto yang diambil ke folder khusus
*![alt text](http://i787.photobucket.com/albums/yy159/m00chi/Mobile%20Uploads/Screenshot_20160328-113840.png)

### Lokasi File
* [Source Code]
* [Binary File]

[Source Code]: <https://github.com/jessicahandayani/IF3111-2016-Tugas1-Android/tree/master/app/src/main>
[Binary File]: <https://github.com/jessicahandayani/IF3111-2016-Tugas1-Android/blob/816d9041d190cddb1f53458923435a9bc65f7dc3/app-debug.apk>
Binary file added app-debug.apk
Binary file not shown.
1 change: 1 addition & 0 deletions app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
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.3"

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

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.2.1'
compile 'com.android.support:design:23.2.1'
compile 'com.google.android.gms:play-services:8.4.0'
}
17 changes: 17 additions & 0 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in C:\Users\jessica\AppData\Local\Android\sdk/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package jessicahandayani.caplocs;

import android.app.Application;
import android.test.ApplicationTestCase;

/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
super(Application.class);
}
}
46 changes: 46 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="jessicahandayani.caplocs">

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/splashScreenTheme" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".SubmitFormActivity"
android:label="@string/submit_form"
android:screenOrientation="portrait" />
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="AIzaSyD97HJ2ealQM1GXpRKiBaH59BqLBZXma1c"/>
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />


</application>


</manifest>
Loading