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