forked from MarcusWolschon/osmeditor4android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
executable file
·144 lines (139 loc) · 5.53 KB
/
Copy pathAndroidManifest.xml
File metadata and controls
executable file
·144 lines (139 loc) · 5.53 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="de.blau.android"
android:versionName="@string/app_version"
android:versionCode="75"
android:installLocation="auto"
>
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="23" />
<!-- disable for now to see if it solves the Play Store problem of the app not showing up for many devices
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
<uses-feature android:name="android.hardware.touchscreen.multitouch" android:required="false" />
<uses-feature android:name="android.hardware.faketouch" />
-->
<uses-feature android:name="android.hardware.sensor.compass" android:required="false" />
<uses-feature android:name="android.hardware.location" android:required="false" />
<uses-feature android:name="android.hardware.location.gps" android:required="false" />
<uses-feature android:name="android.hardware.location.network" android:required="false" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <!-- cache tiles -->
<application
android:name="de.blau.android.Application"
android:label="@string/app_name"
android:icon="@drawable/osm_logo"
android:debuggable="false"
android:largeHeap="true"
android:allowBackup="true" >
<activity
android:name=".Main"
android:theme="@style/Theme.customMain"
android:configChanges="orientation|screenSize|keyboardHidden"
android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<!-- harmless addition for samsung multi window support -->
<category android:name="android.intent.category.MULTIWINDOW_LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".prefs.PrefEditor"
android:theme="@style/Theme.AppCompatPrefs"
/>
<activity
android:name=".prefs.AdvancedPrefEditor"
android:theme="@style/Theme.AppCompatPrefs"
android:label="@string/app_name_version"
/>
<activity
android:name="BoxPicker"
android:theme="@style/Theme.AppCompat"
/>
<activity
android:name=".propertyeditor.PropertyEditor"
android:theme="@style/Theme.customTagEditor"
android:configChanges="orientation|screenSize|keyboardHidden"
/>
<activity
android:name=".prefs.APIEditorActivity"
android:theme="@style/Theme.AppCompat"
/>
<activity
android:name=".prefs.PresetEditorActivity"
android:theme="@style/Theme.AppCompat"
/>
<activity
android:name=".prefs.VespucciURLActivity"
tools:ignore="ExportedActivity"
>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="vespucci" />
</intent-filter>
</activity>
<activity
android:name="de.blau.android.GeoUrlActivity"
tools:ignore="ExportedActivity"
>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="geo" />
</intent-filter>
</activity>
<activity
android:name="de.blau.android.RemoteControlUrlActivity"
tools:ignore="ExportedActivity"
>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" android:host="127.0.0.1" android:port="8111"/>
<data android:scheme="https" android:host="127.0.0.1" android:port="8111"/>
</intent-filter>
</activity>
<activity android:name="LicenseViewer" android:theme="@style/Theme.AppCompat.NoActionBar" />
<activity android:name="DebugInformation" android:theme="@style/Theme.AppCompat.NoActionBar" />
<activity
android:name="HelpViewer"
android:theme="@style/Theme.customHelpViewer"
/>
<activity
android:name="org.acra.dialog.CrashReportDialog"
android:theme="@android:style/Theme.Dialog"
android:process=":error_report"
android:launchMode="singleInstance"
android:excludeFromRecents="true"
android:finishOnTaskLaunch="true"
/>
<service
android:name="org.acra.sender.SenderService"
android:exported="false"
android:process=":acra" />
<!-- Service to download tiles -->
<service
android:name=".services.OpenStreetMapTileProviderService"
android:process=":remote"
android:exported="false"
android:label="OpenStreetMapTileProviderService"
>
<intent-filter>
<action android:name="de.blau.android.services.IOpenStreetMapTileProviderService" />
</intent-filter>
</service>
<!-- Service for GPS tracking -->
<service android:name=".services.TrackerService" android:label="TrackerService" />
<!-- harmless addition for samsung multi window support -->
<uses-library android:required="false" android:name="com.sec.android.app.multiwindow"> </uses-library>
<meta-data android:name="com.sec.android.support.multiwindow" android:value="true" />
</application>
</manifest>