-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
75 lines (63 loc) · 2.92 KB
/
AndroidManifest.xml
File metadata and controls
75 lines (63 loc) · 2.92 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
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
64
65
66
67
68
69
70
71
72
73
74
75
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.kuratkoo.locusaddon.geogetdatabase"
android:versionCode="26"
android:versionName="3.4.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="20" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
android:backupAgent=".backup.PreferencesBackupAgent"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<meta-data
android:name="com.google.android.backup.api_key"
android:value="AEdPqrEAAAAIR4tY2GAVVjAvvjwk_aoBHPv8IA0AkOkyXH8Dxw" />
<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:configChanges="orientation|keyboardHidden"
android:label="@string/load_from_geoget"
android:theme="@style/dialog_theme" >
<!-- thanks to this, app appear in sub-menu of every point -->
<intent-filter>
<action android:name="locus.api.android.INTENT_ITEM_POINT_TOOLS" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<!-- thanks to this, app appear in function list -->
<intent-filter>
<action android:name="locus.api.android.INTENT_ITEM_MAIN_FUNCTION" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<!-- thanks to this, app appear in searching options -->
<intent-filter>
<action android:name="locus.api.android.INTENT_ITEM_SEARCH_LIST" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<!-- thanks to this, app can handle incomming locations -->
<intent-filter>
<action android:name="locus.api.android.ACTION_RECEIVE_LOCATION" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="DetailActivity"
android:configChanges="orientation|keyboardHidden"
android:exported="true"
android:theme="@style/dialog_theme" />
<!-- receiver for handling of periodic updates -->
<receiver android:name=".receiver.LocationReceiver" >
<intent-filter>
<action android:name="locus.api.android.ACTION_PERIODIC_UPDATE" />
</intent-filter>
</receiver>
</application>
</manifest>