mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2024-11-16 23:04:56 +00:00
71 lines
2.8 KiB
XML
71 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.schabi.newpipe" >
|
|
|
|
<uses-permission android:name= "android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:logo="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme" >
|
|
<activity
|
|
android:name=".VideoItemListActivity"
|
|
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=".VideoItemDetailActivity"
|
|
android:label="@string/title_videoitem_detail" >
|
|
<meta-data
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
android:value=".VideoItemListActivity" />
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data
|
|
android:host="youtube.com"
|
|
android:scheme="http"
|
|
android:pathPrefix="/watch"/>
|
|
<data
|
|
android:host="youtube.com"
|
|
android:scheme="https"
|
|
android:pathPrefix="/watch"/>
|
|
<data
|
|
android:host="www.youtube.com"
|
|
android:scheme="http"
|
|
android:pathPrefix="/watch"/>
|
|
<data
|
|
android:host="www.youtube.com"
|
|
android:scheme="https"
|
|
android:pathPrefix="/watch"/>
|
|
<data
|
|
android:host="m.youtube.com"
|
|
android:scheme="http"
|
|
android:pathPrefix="/watch"/>
|
|
<data
|
|
android:host="m.youtube.com"
|
|
android:scheme="https"
|
|
android:pathPrefix="/watch"/>
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name=".PlayVideoActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:theme="@style/FullscreenTheme"
|
|
>
|
|
</activity>
|
|
<activity
|
|
android:name=".SettingsActivity"
|
|
android:label="@string/title_activity_settings" >
|
|
</activity>
|
|
</application>
|
|
</manifest>
|