1 Star 0 Fork 0

Android-TV/TVHClient

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
AndroidManifest.xml 2.61 KB
一键复制 编辑 原始数据 按行查看 历史
Robert Siebert 提交于 2015-02-15 16:38 . Version bump
<?xml version="1.0" encoding="UTF-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.tvheadend.tvhclient"
android:versionCode="21"
android:versionName="1.7.2" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" />
<application
android:allowBackup="true"
android:name="org.tvheadend.tvhclient.TVHClientApplication"
android:label="TVHClient" android:icon="@drawable/ic_launcher">
<meta-data
android:name="android.app.default_searchable"
android:value=".SearchResultActivity" />
<activity android:name="org.tvheadend.tvhclient.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
<intent-filter>
<data android:scheme="tvhclient" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="org.tvheadend.tvhclient.SearchResultActivity" android:launchMode="singleTop">
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<meta-data android:name="android.app.searchable" android:resource="@xml/searchable" />
</activity>
<activity android:name="org.tvheadend.tvhclient.SettingsActivity"/>
<activity android:name="org.tvheadend.tvhclient.SettingsShowConnectionsActivity"/>
<activity android:name="org.tvheadend.tvhclient.SettingsManageConnectionActivity"/>
<activity android:name="org.tvheadend.tvhclient.SettingsProfileActivity"/>
<activity android:name="org.tvheadend.tvhclient.PlaybackSelectionActivity" />
<activity android:name="org.tvheadend.tvhclient.ExternalPlaybackActivity" android:theme="@android:style/Theme.NoTitleBar"/>
<service android:name="org.tvheadend.tvhclient.htsp.HTSService" android:enabled="true"/>
<provider
android:name="org.tvheadend.tvhclient.SuggestionProvider"
android:authorities="org.tvheadend.tvhclient.SuggestionProvider"
android:exported="false" />
</application>
</manifest>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Android
1
https://gitee.com/Android-TV/TVHClient.git
git@gitee.com:Android-TV/TVHClient.git
Android-TV
TVHClient
TVHClient
master

搜索帮助