-
Notifications
You must be signed in to change notification settings - Fork 16
/
AndroidManifest.xml
206 lines (178 loc) · 9.14 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<?xml version="1.0" encoding="utf-8"?>
<!--
~ This file is part of MythTV Android Frontend
~
~ MythTV Android Frontend is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~
~ MythTV Android Frontend is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License
~ along with MythTV Android Frontend. If not, see <http://www.gnu.org/licenses/>.
~
~ This software can be found at <https://github.com/MythTV-Clients/MythTV-Android-Frontend/>
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.mythtv"
android:versionCode="13"
android:versionName="1.20.6" >
<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_MULTICAST_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<!-- Read income phone numbers to post caller ID to frontend as a message -->
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<!-- Mythmote fragments will keep the screen on -->
<uses-permission android:name="android.permission.WAKE_LOCK" />
<!-- Match incoming number to contact name when posting caller ID to frontend as a message
<uses-permission android:name="android.permission.READ_CONTACTS" />-->
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:largeHeap="true" />
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="19" />
<application
android:hardwareAccelerated="true"
android:name=".client.MainApplication"
android:icon="@drawable/ic_mythtv_logo_beta_alt"
android:label="@string/app_name"
android:theme="@style/Theme.Mythtv"
android:allowBackup="true">
<activity
android:name=".client.ui.NavigationDrawerActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- Preferences UI -->
<activity
android:name=".client.ui.preferences.MythtvPreferenceActivity" />
<activity
android:name=".client.ui.preferences.LocationProfileEditor" />
<activity
android:name=".client.ui.preferences.PlaybackProfileEditor" />
<!-- DVR Activities -->
<activity
android:name=".client.ui.dvr.DvrNavigationDrawerActivity"
android:uiOptions="splitActionBarWhenNarrow" />
<activity
android:name=".client.ui.dvr.EpisodeActivity"
android:uiOptions="splitActionBarWhenNarrow" />
<activity
android:name=".client.ui.dvr.ProgramGroupActivity"
android:uiOptions="splitActionBarWhenNarrow" />
<activity
android:name=".client.ui.dvr.VideoActivity"
android:screenOrientation="landscape" />
<activity
android:name=".client.ui.dvr.UpcomingActivity" />
<activity
android:name=".client.ui.dvr.GuideActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize" />
<activity
android:name=".client.ui.dvr.RecordingRuleActivity"
android:uiOptions="splitActionBarWhenNarrow"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize" />
<activity
android:name=".client.ui.dvr.RecordingRuleEditActivity"
android:uiOptions="splitActionBarWhenNarrow"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize" />
<!-- Media Activities -->
<activity
android:name=".client.ui.media.MediaNavigationDrawerActivity"
android:uiOptions="splitActionBarWhenNarrow" />
<activity
android:name=".client.ui.media.GalleryPagerActivity" />
<!-- Frontends Activities -->
<activity
android:name=".client.ui.frontends.MythmoteActivity" />
<!-- MythTV Android Services -->
<service android:name=".service.MythtvService" android:exported="false">
<intent-filter>
<action android:name="org.mythtv.background.ACTION_CONNECT" />
</intent-filter>
</service>
<service android:name=".service.status.BackendStatusService" android:process=":status" android:exported="false">
<intent-filter>
<action android:name="org.mythtv.background.status.ACTION_DOWNLOAD" />
<action android:name="org.mythtv.background.status.ACTION_PROGRESS" />
<action android:name="org.mythtv.background.status.ACTION_COMPLETE" />
</intent-filter>
</service>
<service android:name=".service.channel.ChannelDownloadService" android:process=":channel" android:exported="false">
<intent-filter>
<action android:name="org.mythtv.background.channelDownload.ACTION_DOWNLOAD" />
<action android:name="org.mythtv.background.channelDownload.ACTION_PROGRESS" />
<action android:name="org.mythtv.background.channelDownload.ACTION_COMPLETE" />
</intent-filter>
</service>
<service android:name=".service.frontends.FrontendsDiscoveryService" android:process=":frontends" android:exported="false">
<intent-filter>
<action android:name="org.mythtv.background.frontends.ACTION_DISCOVER" />
<action android:name="org.mythtv.background.frontends.ACTION_PROGRESS" />
<action android:name="org.mythtv.background.frontends.ACTION_COMPLETE" />
</intent-filter>
</service>
<service android:name="org.mythtv.service.content.LiveStreamService" android:process=":liveStream" android:exported="false">
<intent-filter>
<action android:name="org.mythtv.background.liveStream.ACTION_COMPLETE" />
<action android:name="org.mythtv.background.liveStream.ACTION_PROGRESS" />
<action android:name="org.mythtv.background.liveStream.ACTION_CREATE" />
<action android:name="org.mythtv.background.liveStream.ACTION_PLAY" />
<action android:name="org.mythtv.background.liveStream.ACTION_LOAD" />
<action android:name="org.mythtv.background.liveStream.ACTION_REMOVE" />
</intent-filter>
</service>
<service android:name=".service.dvr.RecordedService" android:process=":recorded" android:exported="false">
<intent-filter>
<action android:name="org.mythtv.background.recorded.ACTION_DOWNLOAD" />
<action android:name="org.mythtv.background.recorded.ACTION_REMOVE" />
</intent-filter>
</service>
<service android:name=".service.preferences.PreferencesRecordedDownloadService" android:process=":preferencesRecorded" android:exported="false">
<intent-filter>
<action android:name="org.mythtv.background.preferencesRecordedDownload.ACTION_DOWNLOAD" />
</intent-filter>
</service>
<service android:name=".service.dvr.UpcomingDownloadService" android:process=":upcoming" android:exported="false">
<intent-filter>
<action android:name="org.mythtv.background.upcomingDownload.ACTION_DOWNLOAD" />
<action android:name="org.mythtv.background.upcomingDownload.ACTION_PROGRESS" />
<action android:name="org.mythtv.background.upcomingDownload.ACTION_COMPLETE" />
</intent-filter>
</service>
<service android:name=".service.guide.ProgramGuideDownloadService" android:process=":programGuide" android:exported="false">
<intent-filter>
<action
android:name="org.mythtv.background.programGuideDownload.ACTION_DOWNLOAD" />
</intent-filter>
</service>
<service android:name=".service.dvr.RecordingRuleService" android:process=":recordingRule" android:exported="false">
<intent-filter>
<action android:name="org.mythtv.background.recordingRule.ACTION_DOWNLOAD" />
<action android:name="org.mythtv.background.recordingRule.ACTION_ADD" />
<action android:name="org.mythtv.background.recordingRule.ACTION_UPDATE" />
<action android:name="org.mythtv.background.recordingRule.ACTION_REMOVE" />
<action android:name="org.mythtv.background.recordingRule.ACTION_PROGRESS" />
<action android:name="org.mythtv.background.recordingRule.ACTION_COMPLETE" />
</intent-filter>
</service>
<!-- MythTV Android Providers -->
<provider
android:name=".provider.MythtvProvider"
android:authorities="org.mythtv.frontend"
android:exported="false" />
</application>
</manifest>