1
0
mirror of https://github.com/bspeice/itcs4180 synced 2024-09-28 21:51:38 -04:00
itcs4180/UNCCScavenger/AndroidManifest.xml
tokugawa 995919644b Added Compass capability, QR scanning (requires zxing to be installed),
and main search screen.
Added comments at the top of all files.
TODO: Fix formatting, add locations to server, add photos of locations,
implement database functionality, fix all other TODO's.
2014-04-19 05:09:09 -04:00

43 lines
1.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="edu.uncc.scavenger"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="edu.uncc.scavenger.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="edu.uncc.scavenger.SearchActivity"
android:label="@string/title_activity_search" >
</activity>
<activity
android:name="edu.uncc.scavenger.CompassActivity"
android:label="@string/title_activity_compass" >
</activity>
<activity
android:name="edu.uncc.scavenger.FoundActivity"
android:label="@string/title_activity_found" >
</activity>
</application>
</manifest>