forked from john-tornblom/TVHGuide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
19 lines (19 loc) · 1.17 KB
/
AndroidManifest.xml
File metadata and controls
19 lines (19 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.me.tvhguide">
<application android:name=".TVHGuideApplication" android:label="TVHGuide" android:icon="@drawable/logo_72">
<activity android:name=".ChannelListActivity" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:name=".RecordingListActivity" android:label="@string/app_recordings"/>
<activity android:name=".ProgrammeActivity" android:label="@string/app_programme"/>
<activity android:name=".RecordingActivity" android:label="@string/app_recording"/>
<activity android:name=".SearchResultActivity" android:label="@string/app_search"/>
<activity android:name=".SettingsActivity" android:label="@string/app_settings"/>
<service android:name=".htsp.HTSService" android:enabled="true"/>
</application>
<uses-permission android:name="android.permission.INTERNET" />
</manifest>