NewPipe/app/src/main/AndroidManifest.xml

114 lines
4.9 KiB
XML
Raw Normal View History

2015-09-04 02:15:03 +02:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
2016-02-24 23:12:02 +01:00
package="org.schabi.newpipe">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
2015-09-04 02:15:03 +02:00
<application
android:name=".App"
2015-09-04 02:15:03 +02:00
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
2016-02-24 23:12:02 +01:00
android:logo="@mipmap/ic_launcher"
android:theme="@style/AppTheme"
tools:ignore="AllowBackup">
2015-09-04 02:15:03 +02:00
<activity
android:name=".VideoItemListActivity"
2016-02-24 23:12:02 +01:00
android:configChanges="orientation|screenSize"
android:label="@string/app_name">
2015-09-04 02:15:03 +02:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".VideoItemDetailActivity"
2016-02-05 17:09:29 +01:00
android:configChanges="orientation|screenSize"
2016-02-24 23:12:02 +01:00
android:label="@string/title_videoitem_detail"
android:screenOrientation="portrait"
android:theme="@style/AppTheme">
2015-09-04 02:15:03 +02:00
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".VideoItemListActivity" />
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.media.action.MEDIA_PLAY_FROM_SEARCH" />
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<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" />
<data android:pathPrefix="/v/" />
<data android:pathPrefix="/watch" />
2016-02-17 20:29:31 +01:00
<data android:pathPrefix="/attribution_link" />
</intent-filter>
2015-09-04 02:15:03 +02:00
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.media.action.MEDIA_PLAY_FROM_SEARCH" />
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
2015-09-04 02:15:03 +02: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="youtu.be" />
<data android:pathPrefix="/" />
2015-09-04 02:15:03 +02:00
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.media.action.MEDIA_PLAY_FROM_SEARCH" />
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<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 02:15:03 +02:00
</activity>
2016-02-24 23:12:02 +01:00
<activity
android:name=".PlayVideoActivity"
2015-09-04 02:15:03 +02:00
android:configChanges="orientation|keyboardHidden|screenSize"
android:parentActivityName=".VideoItemDetailActivity"
2016-02-24 23:12:02 +01:00
android:theme="@style/VideoPlayerTheme"
tools:ignore="UnusedAttribute"></activity>
<service
android:name=".BackgroundPlayer"
2016-02-24 23:12:02 +01:00
android:exported="false"
android:label="@string/background_player_name" />
2015-09-04 02:15:03 +02:00
<activity
android:name=".SettingsActivity"
2016-02-24 23:12:02 +01:00
android:label="@string/settings_activity_title"></activity>
<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" />
2016-02-24 23:12:02 +01:00
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".ExitActivity"
android:theme="@android:style/Theme.NoDisplay" />
2016-02-24 23:12:02 +01:00
<activity android:name=".errorhandling.ErrorActivity"></activity>
2015-09-04 02:15:03 +02:00
</application>
2016-02-24 23:12:02 +01:00
2015-09-04 02:15:03 +02:00
</manifest>