forked from ruleant/getback_gps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
63 lines (58 loc) · 2.82 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.github.ruleant.getback_gps"
android:versionCode="70"
android:versionName="0.7-dev" >
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission-sdk-23 android:name="string" />
<uses-feature android:name="android.hardware.location" android:required="true"/>
<uses-feature android:name="android.hardware.location.network" android:required="true"/>
<uses-feature android:name="android.hardware.location.gps" android:required="true"/>
<uses-feature android:name="android.hardware.sensor.compass" android:required="false"/>
<uses-feature android:name="android.hardware.sensor.gyroscope" android:required="false"/>
<application
android:allowBackup="true"
android:fullBackupContent="@xml/backup_descriptor"
android:supportsRtl="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.github.ruleant.getback_gps.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="com.github.ruleant.getback_gps.DetailsActivity"
android:label="@string/activity_details"
android:parentActivityName="com.github.ruleant.getback_gps.MainActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.github.ruleant.getback_gps.MainActivity" />
</activity>
<activity
android:name="com.github.ruleant.getback_gps.AboutActivity"
android:label="@string/about"
android:parentActivityName="com.github.ruleant.getback_gps.MainActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.github.ruleant.getback_gps.MainActivity" />
</activity>
<activity
android:name="com.github.ruleant.getback_gps.SettingsActivity"
android:label="@string/settings"
android:parentActivityName="com.github.ruleant.getback_gps.MainActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.github.ruleant.getback_gps.MainActivity" />
</activity>
<service
android:name="com.github.ruleant.getback_gps.LocationService"
android:enabled="true"
android:exported="false" >
</service>
</application>
</manifest>