|
|
@@ -1,72 +0,0 @@
|
|
|
-<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
- package="com.usai.apex"
|
|
|
- android:versionCode="1"
|
|
|
- android:versionName="1.0" >
|
|
|
-
|
|
|
- <!-- Copied from Google Maps Library/AndroidManifest.xml. -->
|
|
|
- <uses-sdk
|
|
|
- android:minSdkVersion="17"
|
|
|
- android:targetSdkVersion="17" />
|
|
|
-
|
|
|
- <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" />
|
|
|
- <!-- External storage for caching. -->
|
|
|
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
- <!-- My Location -->
|
|
|
- <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
|
- <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
|
- <!-- Maps API needs OpenGL ES 2.0. -->
|
|
|
- <uses-feature
|
|
|
- android:glEsVersion="0x00020000"
|
|
|
- android:required="true" />
|
|
|
- <!-- End of copy. -->
|
|
|
- <application
|
|
|
- android:name="com.usai.apex.ApexTrackingApplication"
|
|
|
- android:allowBackup="true"
|
|
|
- android:icon="@drawable/ic_launcher"
|
|
|
- android:label="@string/app_name"
|
|
|
- android:theme="@android:style/Theme.Holo.Light" >
|
|
|
- <meta-data
|
|
|
- android:name="com.google.android.maps.v2.API_KEY"
|
|
|
- android:value="AIzaSyBmXqQ2PJKQudZJPA05ei0w0sODW8vhD1U" />
|
|
|
- <meta-data
|
|
|
- android:name="com.google.android.gms.version"
|
|
|
- android:value="@integer/google_play_services_version" />
|
|
|
-
|
|
|
- <activity
|
|
|
- android:name="com.usai.apex.ApexActivity"
|
|
|
- android:label="@string/title_activity_apex"
|
|
|
- android:windowSoftInputMode="adjustPan" >
|
|
|
- <intent-filter>
|
|
|
- <action android:name="android.intent.action.MAIN" />
|
|
|
-
|
|
|
- <category android:name="android.intent.category.LAUNCHER" />
|
|
|
- </intent-filter>
|
|
|
- </activity>
|
|
|
- <activity
|
|
|
- android:name="com.usai.apex.LoginFragment"
|
|
|
- android:label="@string/title_activity_login"
|
|
|
- android:windowSoftInputMode="adjustResize|stateVisible" >
|
|
|
- </activity>
|
|
|
- <activity
|
|
|
- android:name="com.usai.apex.DirectTrackingFragment"
|
|
|
- android:label="@string/title_activity_direct_tracking" >
|
|
|
- </activity>
|
|
|
- <activity
|
|
|
- android:name="com.usai.apex.FunctionSelectActivity"
|
|
|
- android:label="@string/title_activity_function_select" >
|
|
|
- <intent-filter>
|
|
|
- <action android:name="android.intent.action.MAIN" />
|
|
|
-
|
|
|
- <category android:name="android.intent.category.LAUNCHER" />
|
|
|
- </intent-filter>
|
|
|
- </activity>
|
|
|
- <activity
|
|
|
- android:name="com.usai.apex.SearchActivity"
|
|
|
- android:label="@string/title_activity_search" >
|
|
|
- </activity>
|
|
|
- </application>
|
|
|
-
|
|
|
-</manifest>
|