altosdroid: Update copyrights
[fw/altos] / altosdroid / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3  * Copyright © 2012 Mike Beattie <mike@ethernal.org>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; version 2 of the License.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17 -->
18 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
19       package="org.altusmetrum.AltosDroid"
20       android:versionCode="1"
21       android:versionName="1.0">
22     <uses-sdk android:targetSdkVersion="10" android:minSdkVersion="10"/>
23     <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
24     <uses-permission android:name="android.permission.BLUETOOTH" />
25
26     <application android:label="@string/app_name"
27                  android:icon="@drawable/app_icon" >
28         <activity android:label="@string/app_name"
29                   android:configChanges="orientation|keyboardHidden" android:name="org.altusmetrum.AltosDroid.AltosDroid">
30             <intent-filter>
31                 <action android:name="android.intent.action.MAIN" />
32                 <category android:name="android.intent.category.LAUNCHER" />
33             </intent-filter>
34         </activity>
35         <activity android:name=".DeviceListActivity"
36                   android:label="@string/select_device"
37                   android:theme="@android:style/Theme.Dialog"
38                   android:configChanges="orientation|keyboardHidden" />
39
40
41         <!-- Service Samples -->
42
43         <service android:name=".TelemetryService" />
44
45         <activity android:name=".TelemetryServiceActivities$Controller"
46                 android:label="@string/activity_telemetry_service_controller"
47                 android:launchMode="singleTop">
48 <!--
49             <intent-filter>
50                 <action android:name="android.intent.action.MAIN" />
51                 <category android:name="android.intent.category.SAMPLE_CODE" />
52             </intent-filter>
53 -->
54         </activity>
55
56         <activity android:name="TelemetryServiceActivities$Binding"
57                 android:label="@string/activity_telemetry_service_binding">
58 <!--
59             <intent-filter>
60                 <action android:name="android.intent.action.MAIN" />
61                 <category android:name="android.intent.category.SAMPLE_CODE" />
62             </intent-filter>
63 -->
64         </activity>
65
66     </application>
67 </manifest>