-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathAndroidManifest.xml
181 lines (151 loc) · 7.18 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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<?xml version="1.0" encoding="utf-8"?>
<!-- Regular release uses com.geeksville.gaggle, testing builds use com.geeksville.gaggletest -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.geeksville.gaggle" android:installLocation="auto" android:versionCode="165" android:versionName="1.65">
<supports-screens android:smallScreens="true"
android:normalScreens="true" android:largeScreens="true"
android:anyDensity="true" />
<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="9" />
<application android:icon="@drawable/icon" android:label="@string/app_name"
android:description="@string/app_description" android:name="com.geeksville.gaggle.GaggleApplication"
android:theme="@android:style/Theme.NoTitleBar" android:debuggable="false"> <!-- "@android:style/Theme.Light.NoTitleBar" -->
<meta-data android:name="CLOUDMADE_KEY" android:value="683f9355fa964a70bcde43fe4a420de2" />
<service android:name="com.geeksville.billing.BillingService" />
<receiver android:name="com.geeksville.billing.BillingReceiver" >
<intent-filter>
<action android:name="com.android.vending.billing.IN_APP_NOTIFY" />
<action android:name="com.android.vending.billing.RESPONSE_CODE" />
<action android:name="com.android.vending.billing.PURCHASE_STATE_CHANGED" />
</intent-filter>
</receiver>
<activity android:name=".TopActivity" android:label="@string/app_name"
android:launchMode="singleTask" android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".LoggingControl"
android:screenOrientation="portrait">
</activity>
<activity android:name="com.geeksville.maps.PrefetchMapActivity"></activity>
<activity android:name=".ListFlightsActivity"></activity>
<activity android:name="com.geeksville.info.SelectInfoFieldsActivity"
android:label="Select fields">
</activity>
<activity android:name=".AboutActivity"></activity>
<activity android:name=".SummaryListActivity"></activity>
<activity android:name=".ListWaypointsActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!--
Frequently gmail attachments have this as the only known mime type
-->
<data android:scheme="content" android:mimeType="application/octet-stream" />
</intent-filter>
<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" />
<data android:scheme="https" />
<data android:host="*" />
<data android:pathPattern=".*\\.WPT" />
<data android:pathPattern=".*\\.wpt" />
<data android:pathPattern=".*\\.DAT" />
<data android:pathPattern=".*\\.dat" />
<data android:pathPattern=".*\\.CUP" />
<data android:pathPattern=".*\\.cup" />
</intent-filter>
<!--
We're using separate intent-filters for download (http/s) and local files (file/content) as they require
different settings for mimeType to each other.
-->
<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="file" />
<data android:scheme="content" />
<data android:host="*" />
<data android:pathPattern=".*\\.WPT" />
<data android:pathPattern=".*\\.wpt" />
<data android:pathPattern=".*\\.DAT" />
<data android:pathPattern=".*\\.dat" />
<data android:pathPattern=".*\\.CUP" />
<data android:pathPattern=".*\\.cup" />
<data android:mimeType="*/*" />
</intent-filter>
</activity>
<activity android:name=".MyPreferences">
<intent-filter>
<category android:name="android.intent.category.PREFERENCE" />
</intent-filter>
</activity>
<activity android:name=".BetaSplashActivity"></activity>
<activity android:name="com.geeksville.gaggle.FlyMapActivity"
android:screenOrientation="portrait">
<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" />
<data android:scheme="https" />
<data android:host="*" />
<data android:pathPattern=".*\\.IGC" />
<data android:pathPattern=".*\\.igc" />
</intent-filter>
<!--
We're using separate intent-filters for download (http/s) and local files (file/content) as they require
different settings for mimeType to each other.
-->
<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="file" />
<data android:scheme="content" />
<data android:host="*" />
<data android:pathPattern=".*\\.IGC" />
<data android:pathPattern=".*\\.igc" />
<data android:mimeType="*/*" />
</intent-filter>
</activity>
<!-- <uses-library android:name="com.google.android.maps" /> -->
<service android:name="com.geeksville.location.GPSClient">
<intent-filter>
<action android:name="com.geeksville.gaggle.location.LOG_SERVICE"></action>
</intent-filter>
</service>
</application>
<!-- Needed for leonardo uploads and maps -->
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<!-- Needed to get location -->
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"></uses-permission>
<!-- Needed for sim tracklog usage -->
<uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<!-- Needed for OSM -->
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<!-- Required permission to use in-app billing. -->
<uses-permission android:name="com.android.vending.BILLING" />
<!--
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
Needed to turn wifi on/off <uses-permission
android:name="android.permission.ACCESS_WIFI_STATE"></uses-permission>
<uses-permission
android:name="android.permission.CHANGE_WIFI_STATE"></uses-permission>
FIXME - move these to other apps <uses-permission
android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission>
<uses-permission
android:name="android.permission.READ_OWNER_DATA"></uses-permission>
<uses-permission
android:name="android.permission.BLUETOOTH"></uses-permission>
-->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
<!-- To talk to bluetooth based varios -->
<uses-permission android:name="android.permission.BLUETOOTH" />
</manifest>