1 | <?xml version="1.0" encoding="utf-8"?> |
---|
2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
---|
3 | package="info.puzzlebox.orbit" |
---|
4 | android:versionCode="1" |
---|
5 | android:versionName="1.0" > |
---|
6 | |
---|
7 | <uses-sdk |
---|
8 | android:minSdkVersion="8" |
---|
9 | android:targetSdkVersion="15" /> |
---|
10 | |
---|
11 | <uses-permission android:name="android.permission.BLUETOOTH" /> |
---|
12 | <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /> |
---|
13 | |
---|
14 | <!-- <uses-feature android:name="android.hardware.usb.host" /> --> |
---|
15 | |
---|
16 | <application |
---|
17 | android:icon="@drawable/ic_launcher" |
---|
18 | android:label="@string/app_name" |
---|
19 | android:theme="@style/AppTheme" > |
---|
20 | <activity |
---|
21 | android:name=".MainActivity" |
---|
22 | android:label="@string/app_name" > |
---|
23 | <intent-filter> |
---|
24 | <action android:name="android.intent.action.MAIN" /> |
---|
25 | |
---|
26 | <category android:name="android.intent.category.DEFAULT" /> |
---|
27 | <category android:name="android.intent.category.LAUNCHER" /> |
---|
28 | </intent-filter> |
---|
29 | <!-- <intent-filter> --> |
---|
30 | <!-- <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" /> --> |
---|
31 | <!-- </intent-filter> --> |
---|
32 | |
---|
33 | <!-- <meta-data --> |
---|
34 | <!-- android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" --> |
---|
35 | <!-- android:resource="@xml/device_filter" /> --> |
---|
36 | </activity> |
---|
37 | </application> |
---|
38 | |
---|
39 | </manifest><!-- <manifest xmlns:android="http://schemas.android.com/apk/res/android" --> |
---|
40 | <!-- package="info.puzzlebox.orbit" --> |
---|
41 | <!-- android:versionCode="1" --> |
---|
42 | <!-- android:versionName="1.0" > --> |
---|
43 | |
---|
44 | <!-- <uses-sdk --> |
---|
45 | <!-- android:minSdkVersion="15" --> |
---|
46 | <!-- android:targetSdkVersion="15" /> --> |
---|
47 | |
---|
48 | <!-- <application --> |
---|
49 | <!-- android:icon="@drawable/ic_launcher" --> |
---|
50 | <!-- android:label="@string/app_name" --> |
---|
51 | <!-- android:theme="@style/AppTheme" > --> |
---|
52 | <!-- <activity --> |
---|
53 | <!-- android:name=".MainActivity" --> |
---|
54 | <!-- android:label="@string/title_activity_main" > --> |
---|
55 | <!-- <meta-data --> |
---|
56 | <!-- android:name="android.support.PARENT_ACTIVITY" --> |
---|
57 | <!-- android:value="android.app.ActivityGroup" /> --> |
---|
58 | <!-- </activity> --> |
---|
59 | <!-- </application> --> |
---|
60 | |
---|
61 | <!-- </manifest> --> |
---|