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"
|
|
|
|
package="org.openpilot.androidgcs"
|
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0">
|
2011-03-01 08:23:10 +01:00
|
|
|
<uses-sdk android:minSdkVersion="7" />
|
2011-02-24 10:35:19 +01:00
|
|
|
|
2011-03-14 03:01:11 +01:00
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
|
|
|
|
|
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name" >
|
2011-03-01 08:23:10 +01:00
|
|
|
|
2011-03-14 03:01:11 +01:00
|
|
|
<activity android:name="ObjectBrowser"
|
|
|
|
android:label="@string/app_name">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2011-02-24 10:35:19 +01:00
|
|
|
|
|
|
|
</application>
|
|
|
|
</manifest>
|