2015-09-04 00:15:03 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-11-26 18:11:31 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2015-09-04 00:15:03 +00:00
|
|
|
package="org.schabi.newpipe" >
|
|
|
|
<uses-permission android:name= "android.permission.INTERNET" />
|
2015-11-25 15:19:50 +00:00
|
|
|
<uses-permission android:name= "android.permission.WAKE_LOCK" />
|
2015-09-04 00:15:03 +00:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
|
|
<application
|
2016-01-01 21:16:41 +00:00
|
|
|
android:name=".App"
|
2015-09-04 00:15:03 +00:00
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:logo="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2015-11-26 18:11:31 +00:00
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
tools:ignore="AllowBackup">
|
2015-09-04 00:15:03 +00:00
|
|
|
<activity
|
|
|
|
android:name=".VideoItemListActivity"
|
2016-02-05 16:09:29 +00:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:configChanges="orientation|screenSize">
|
2015-09-04 00:15:03 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".VideoItemDetailActivity"
|
2015-12-14 10:01:34 +00:00
|
|
|
android:label="@string/title_videoitem_detail"
|
2016-02-05 16:09:29 +00:00
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:screenOrientation="portrait">
|
2015-09-04 00:15:03 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".VideoItemListActivity" />
|
2016-01-01 22:17:39 +00:00
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2016-01-01 22:52:22 +00:00
|
|
|
<action android:name="android.media.action.MEDIA_PLAY_FROM_SEARCH" />
|
|
|
|
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
|
2016-01-01 22:17:39 +00:00
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
|
|
|
<data android:scheme="http" />
|
|
|
|
<data android:scheme="https" />
|
|
|
|
<data android:host="youtube.com" />
|
|
|
|
<data android:host="m.youtube.com" />
|
|
|
|
<data android:host="www.youtube.com" />
|
2016-01-01 22:29:50 +00:00
|
|
|
<data android:pathPrefix="/v/" />
|
2016-01-01 22:32:09 +00:00
|
|
|
<data android:pathPrefix="/watch" />
|
2016-01-01 22:17:39 +00:00
|
|
|
</intent-filter>
|
2015-09-04 00:15:03 +00:00
|
|
|
<intent-filter>
|
2016-01-01 22:17:39 +00:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2016-01-01 22:52:22 +00:00
|
|
|
<action android:name="android.media.action.MEDIA_PLAY_FROM_SEARCH" />
|
|
|
|
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
|
2016-01-01 22:17:39 +00:00
|
|
|
|
2015-09-04 00:15:03 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
2016-01-01 22:17:39 +00:00
|
|
|
<data android:scheme="http" />
|
|
|
|
<data android:scheme="https" />
|
|
|
|
<data android:host="youtu.be" />
|
|
|
|
<data android:pathPrefix="/" />
|
2015-09-04 00:15:03 +00:00
|
|
|
</intent-filter>
|
2016-01-01 22:51:34 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2016-01-01 22:52:22 +00:00
|
|
|
<action android:name="android.media.action.MEDIA_PLAY_FROM_SEARCH" />
|
|
|
|
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
|
2016-01-01 22:51:34 +00:00
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
|
|
|
<data android:scheme="vnd.youtube" />
|
|
|
|
<data android:scheme="vnd.youtube.launch" />
|
|
|
|
</intent-filter>
|
2015-09-04 00:15:03 +00:00
|
|
|
</activity>
|
|
|
|
<activity android:name=".PlayVideoActivity"
|
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
2015-11-26 18:54:13 +00:00
|
|
|
android:theme="@style/VideoPlayerTheme"
|
2015-11-02 21:19:18 +00:00
|
|
|
android:parentActivityName=".VideoItemDetailActivity"
|
2015-11-26 18:28:50 +00:00
|
|
|
tools:ignore="UnusedAttribute">
|
2015-09-04 00:15:03 +00:00
|
|
|
</activity>
|
2015-11-25 17:18:01 +00:00
|
|
|
<service
|
|
|
|
android:name=".BackgroundPlayer"
|
2016-01-01 21:23:00 +00:00
|
|
|
android:label="@string/background_player_name"
|
|
|
|
android:exported="false" />
|
2015-09-04 00:15:03 +00:00
|
|
|
<activity
|
|
|
|
android:name=".SettingsActivity"
|
2016-01-05 19:56:40 +00:00
|
|
|
android:label="@string/settings_activity_title" >
|
2015-09-04 00:15:03 +00:00
|
|
|
</activity>
|
2015-12-31 20:53:14 +00:00
|
|
|
<activity
|
|
|
|
android:name=".PanicResponderActivity"
|
|
|
|
android:launchMode="singleInstance"
|
|
|
|
android:noHistory="true"
|
|
|
|
android:theme="@android:style/Theme.NoDisplay">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="info.guardianproject.panic.action.TRIGGER" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".ExitActivity"
|
|
|
|
android:theme="@android:style/Theme.NoDisplay" />
|
2015-09-04 00:15:03 +00:00
|
|
|
</application>
|
|
|
|
</manifest>
|