altos/test: Adjust CRC error rate after FEC fix
[fw/altos] / altosdroid / app / src / main / AndroidManifest.xml.in
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3
4  Copyright © 2012 Mike Beattie <mike@ethernal.org>
5
6  This program is free software; you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2 of the License, or
9  (at your option) any later version.
10
11  This program is distributed in the hope that it will be useful, but
12  WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  General Public License for more details.
15
16  You should have received a copy of the GNU General Public License along
17  with this program; if not, write to the Free Software Foundation, Inc.,
18  59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
19
20 -->
21 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
22           package="org.altusmetrum.AltosDroid">
23     <!-- Google Maps -->
24     <uses-feature android:glEsVersion="0x00020000" android:required="true"/>
25
26     <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
27
28     <!-- Permissions needed to access bluetooth -->
29     <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
30     <uses-permission android:name="android.permission.BLUETOOTH" />
31     <uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
32     <!-- Permissions needed to save Telemetry logs to SD card -->
33     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
34     <!-- Permissions needed for GoogleMaps -->
35     <uses-permission android:name="android.permission.INTERNET"/>
36     <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
37     <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
38     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
39
40     <permission android:name="org.altusmetrum.AltosDroid.permission.MAPS_RECEIVE"
41                 android:protectionLevel="signature"/>
42     <uses-permission android:name="org.altusmetrum.AltosDroid.permission.MAPS_RECEIVE"/>
43
44     <!-- Permissions needed to access USB OTG -->
45     <uses-feature android:name="android.hardware.usb.host" android:required="false" />
46
47     <application android:label="@string/app_name"
48                  android:icon="@drawable/app_icon"
49                  android:allowBackup="true"
50                  android:theme="@style/Medium">
51
52         <activity android:name="org.altusmetrum.AltosDroid.AltosDroid"
53                   android:label="@string/app_name"
54                   android:configChanges="orientation|keyboardHidden"
55                   android:launchMode="singleTop">
56             <intent-filter>
57                 <category android:name="android.intent.category.LAUNCHER" />
58                 <action android:name="android.intent.action.MAIN" />
59                 <action android:name="android.intent.action.VIEW" />
60                 <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"/>
61             </intent-filter>
62             <meta-data
63                     android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
64                     android:resource="@xml/device_filter" />
65         </activity>
66
67         <activity android:name=".DeviceListActivity"
68                   android:label="@string/select_device"
69                   android:theme="@android:style/Theme.Dialog"
70                   android:configChanges="orientation|keyboardHidden" />
71
72         <activity android:name=".SelectTrackerActivity"
73                   android:label="@string/select_tracker"
74                   android:theme="@android:style/Theme.Dialog"
75                   android:configChanges="orientation|keyboardHidden" />
76
77         <activity android:name=".PreloadMapActivity"
78                   android:label="@string/preload_maps"
79                   android:theme="@android:style/Theme.Dialog"
80                   android:configChanges="orientation|keyboardHidden" />
81
82         <activity android:name=".MapTypeActivity"
83                   android:label="@string/map_type"
84                   android:theme="@android:style/Theme.Dialog"
85                   android:configChanges="orientation|keyboardHidden" />
86
87         <activity android:name=".IdleModeActivity"
88                   android:label="@string/idle_mode"
89                   android:theme="@android:style/Theme.Dialog"
90                   android:configChanges="orientation|keyboardHidden" />
91
92         <activity android:name=".IgniterActivity"
93                   android:label="@string/igniters"
94                   android:theme="@android:style/Theme.Dialog"
95                   android:configChanges="orientation|keyboardHidden" />
96
97         <activity android:name=".SetupActivity"
98                   android:label="@string/setup"
99                   android:theme="@android:style/Theme.Dialog"
100                   android:configChanges="orientation" />
101
102         <activity android:name=".ManageFrequenciesActivity"
103                   android:label="@string/manage_frequencies"
104                   android:theme="@android:style/Theme.Dialog"
105                   android:configChanges="orientation|keyboard" />
106                   
107         <service android:name=".TelemetryService" />
108
109         <meta-data android:name="com.google.android.maps.v2.API_KEY"
110                    android:value="@GOOGLEKEY@"/>
111         <meta-data android:name="com.google.android.gms.version"
112                    android:value="@integer/google_play_services_version" />
113     </application>
114 </manifest>