-
Notifications
You must be signed in to change notification settings - Fork 6
/
AndroidManifest.xml
87 lines (77 loc) · 5.3 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.bunniestudios.NeTV"
android:versionCode="3"
android:versionName="0.7.3"
android:installLocation="auto"
android:debuggable="false"
android:theme="@android:style/Theme.NoTitleBar" >
<uses-sdk android:minSdkVersion="8" />
<application android:icon="@drawable/icon"
android:label="@string/app_name"
android:name="com.bunniestudios.NeTV.AppNeTV" android:debuggable="true">
<activity android:name=".ActivitySplash"
android:label="@string/app_name"
android:clearTaskOnLaunch="false"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.NoTitleBar"
android:windowSoftInputMode="adjustResize|stateAlwaysHidden" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".ActivityBaseNeTV" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" android:windowSoftInputMode="adjustResize|stateAlwaysHidden" />
<activity android:name=".ActivityWifiList" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" android:windowSoftInputMode="adjustResize|stateAlwaysHidden" />
<activity android:name=".ActivityWifiDetails" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" android:windowSoftInputMode="adjustResize" />
<activity android:name=".ActivityAccount" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" android:windowSoftInputMode="adjustResize" />
<activity android:name=".ActivityConfiguring" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" android:windowSoftInputMode="adjustResize|stateAlwaysHidden" />
<activity android:name=".NeTVWidgetPrefs" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" android:windowSoftInputMode="adjustResize|stateAlwaysHidden" />
<activity android:name=".ActivityTextInput" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" android:windowSoftInputMode="adjustResize|stateAlwaysVisible" />
<activity android:name=".ActivityRemoteMain" android:screenOrientation="portrait" android:theme="@android:style/Theme.NoTitleBar" android:windowSoftInputMode="adjustResize|stateAlwaysHidden" >
<intent-filter android:label="Send to TV" >
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
<intent-filter android:label="Send to TV" >
<action android:name="android.intent.action.CHOOSER" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
</activity>
<activity android:name=".ActivityBrowser" android:screenOrientation="portrait" android:windowSoftInputMode="adjustResize|stateAlwaysHidden"
android:theme="@android:style/Theme.NoTitleBar" >
<intent-filter android:label="View on TV">
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="http" />
</intent-filter>
</activity>
<service android:enabled="true" android:name="com.bunniestudios.NeTV.CommService"></service>
<!-- Broadcast Receiver that will process AppWidget updates -->
<receiver android:name="com.bunniestudios.NeTV.NeTVWidget" android:label="@string/app_name">
<meta-data android:name="android.appwidget.provider" android:resource="@xml/widget_netv" />
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
</intent-filter>
</receiver>
<!-- These are for the factory test -->
<activity android:name="com.bunniestudios.NeTV.ActivityFactoryTest1"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.NoTitleBar"
android:windowSoftInputMode="adjustResize|stateAlwaysHidden" />
</application>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.RECEIVE_SMS" />
<!-- These are for the factory test -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
</manifest>