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="7" |
---|
5 | android:versionName="1.4.4" > |
---|
6 | |
---|
7 | <uses-sdk |
---|
8 | android:minSdkVersion="14" |
---|
9 | android:targetSdkVersion="18" /> |
---|
10 | |
---|
11 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> |
---|
12 | <uses-permission android:name="android.permission.BLUETOOTH" /> |
---|
13 | <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /> |
---|
14 | <uses-permission android:name="android.permission.INTERNET"/> |
---|
15 | |
---|
16 | <uses-feature android:name="android.hardware.touchscreen" android:required="false"/> |
---|
17 | <!-- <uses-feature android:name="android.hardware.usb.host" /> --> |
---|
18 | |
---|
19 | <application |
---|
20 | android:icon="@drawable/ic_launcher" |
---|
21 | android:label="@string/app_name" |
---|
22 | android:theme="@style/AppTheme" |
---|
23 | android:hardwareAccelerated="true" |
---|
24 | android:allowBackup="true" > |
---|
25 | |
---|
26 | <!-- <activity |
---|
27 | android:name=".OrbitActivity" |
---|
28 | android:label="@string/app_name" >--> |
---|
29 | <activity android:label="@string/label_debug_console" android:name=".OrbitTabActivity" > |
---|
30 | |
---|
31 | <intent-filter> |
---|
32 | <action android:name="android.intent.action.MAIN" /> |
---|
33 | <category android:name="android.intent.category.DEFAULT" /> |
---|
34 | <category android:name="android.intent.category.LAUNCHER" /> |
---|
35 | <category android:name="info.puzzlebox.orbit.fragments.TABSPAGER"/> |
---|
36 | </intent-filter> |
---|
37 | |
---|
38 | <!-- <intent-filter> --> |
---|
39 | <!-- <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" /> --> |
---|
40 | <!-- </intent-filter> --> |
---|
41 | |
---|
42 | <!-- <meta-data --> |
---|
43 | <!-- android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" --> |
---|
44 | <!-- android:resource="@xml/device_filter" /> --> |
---|
45 | |
---|
46 | </activity> |
---|
47 | |
---|
48 | <!-- |
---|
49 | <activity android:label="@string/app_name" android:name=".OrbitActivity" > |
---|
50 | |
---|
51 | <intent-filter> |
---|
52 | <action android:name="android.intent.action.MAIN" /> |
---|
53 | <category android:name="android.intent.category.DEFAULT" /> |
---|
54 | <category android:name="android.intent.category.LAUNCHER" /> |
---|
55 | <category android:name="info.puzzlebox.orbit.OrbitActivity"/> |
---|
56 | </intent-filter> |
---|
57 | |
---|
58 | </activity> |
---|
59 | |
---|
60 | <activity android:label="@string/app_name" android:name=".OrbitUSBActivity" > |
---|
61 | |
---|
62 | <intent-filter> |
---|
63 | <action android:name="android.intent.action.MAIN" /> |
---|
64 | <category android:name="android.intent.category.DEFAULT" /> |
---|
65 | <category android:name="android.intent.category.LAUNCHER" /> |
---|
66 | <category android:name="info.puzzlebox.orbit.OrbitUSBActivity"/> |
---|
67 | </intent-filter> |
---|
68 | |
---|
69 | <intent-filter> |
---|
70 | <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" /> |
---|
71 | </intent-filter> |
---|
72 | |
---|
73 | <meta-data |
---|
74 | android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" |
---|
75 | android:resource="@xml/device_filter" /> |
---|
76 | |
---|
77 | </activity> |
---|
78 | --> |
---|
79 | |
---|
80 | |
---|
81 | <!-- <service android:name=".AudioService" /> --> |
---|
82 | |
---|
83 | </application> |
---|
84 | |
---|
85 | </manifest> |
---|