-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
33 lines (33 loc) · 1.91 KB
/
AndroidManifest.xml
File metadata and controls
33 lines (33 loc) · 1.91 KB
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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.kuratkoo.locusaddon.gsakdatabase"
android:versionCode="8"
android:versionName="2.2.2">
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="11" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application android:label="@string/app_name" android:icon="@drawable/ic_launcher" android:backupAgent=".backup.PreferencesBackupAgent">
<meta-data android:name="com.google.android.backup.api_key" android:value="AEdPqrEAAAAIxtbwo_e2LyaiyQgUD3B7YKdg8KxBY2i7-CGHdA" />
<activity android:name="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="LoadActivity" android:label="@string/load_from_gsak" android:theme="@style/dialog_theme" android:configChanges="orientation">
<intent-filter>
<action android:name="menion.android.locus.ON_POINT_ACTION" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="menion.android.locus.MAIN_FUNCTION" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="DetailActivity" android:exported="true" android:theme="@style/dialog_theme" android:configChanges="orientation" />
<receiver android:name=".receiver.LocationReceiver">
<intent-filter>
<action android:name="menion.android.locus.PERIODIC_UPDATE" />
</intent-filter>
</receiver>
</application>
</manifest>