2011-02-24 10:35:19 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2011-03-20 02:00:12 +01:00
|
|
|
package="org.openpilot.androidgcs" android:versionCode="1"
|
|
|
|
android:versionName="1.0">
|
2012-08-05 06:00:25 +02:00
|
|
|
<uses-sdk android:minSdkVersion="14" />
|
2011-02-24 10:35:19 +01:00
|
|
|
|
2011-03-23 03:39:44 +01:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
2011-03-14 03:01:11 +01:00
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
2012-08-06 06:26:30 +02:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
2011-03-01 08:23:10 +01:00
|
|
|
|
2012-08-05 23:09:14 +02:00
|
|
|
<application android:icon="@drawable/ic_logo" android:label="@string/app_name" android:theme="@android:style/Theme.Holo">
|
2011-03-23 03:39:44 +01:00
|
|
|
<!-- for map overlay -->
|
|
|
|
<uses-library android:name="com.google.android.maps" />
|
2011-03-20 02:00:12 +01:00
|
|
|
|
|
|
|
<!-- Object browser - main activity at the moment -->
|
2011-03-21 03:34:03 +01:00
|
|
|
<activity android:name="HomePage" android:label="@string/app_name">
|
2011-03-20 02:00:12 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2011-03-21 03:34:03 +01:00
|
|
|
</activity>
|
2011-03-23 03:39:44 +01:00
|
|
|
|
2011-03-22 18:59:01 +01:00
|
|
|
<activity android:name="ObjectBrowser" android:label="@string/object_browser_name" />
|
2011-03-23 03:39:44 +01:00
|
|
|
<activity android:name="PFD" android:label="PFD" />
|
2012-08-06 01:41:07 +02:00
|
|
|
<activity android:name="Controller" android:label="@string/controller_name" />
|
2011-03-23 03:39:44 +01:00
|
|
|
<activity android:name="Preferences" android:label="@string/preference_title" />
|
2012-08-06 09:39:27 +02:00
|
|
|
<activity android:name="UAVLocation" android:label="@string/location_name" />
|
2011-03-23 03:39:44 +01:00
|
|
|
<activity android:name="ObjectEditor" android:label="ObjectEditor"
|
|
|
|
android:theme="@android:style/Theme.Dialog" />
|
2012-08-06 09:39:27 +02:00
|
|
|
<activity android:name="Logger" android:label="Logger"
|
|
|
|
android:theme="@android:style/Theme.Dialog" />
|
2011-03-23 03:39:44 +01:00
|
|
|
|
2011-03-20 02:00:12 +01:00
|
|
|
<receiver android:name="TelemetryWidget">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="org.openpilot.intent.action.CONNECTED" />
|
|
|
|
<action android:name="org.openpilot.intent.action.DISCONNECTED" />
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data android:name="android.appwidget.provider"
|
|
|
|
android:resource="@xml/telemetry_widget_info" />
|
|
|
|
</receiver>
|
2011-02-24 10:35:19 +01:00
|
|
|
|
2011-03-17 19:58:55 +01:00
|
|
|
<service android:name=".OPTelemetryService"></service>
|
2011-03-20 02:00:12 +01:00
|
|
|
</application>
|
2011-02-24 10:35:19 +01:00
|
|
|
</manifest>
|