mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2024-12-27 02:20:32 +00:00
2ac71c75c0
- Background player is using ExoPlayer internally now
216 lines
9.1 KiB
XML
216 lines
9.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
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" />
|
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
|
|
|
|
<application
|
|
android:name=".App"
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:logo="@mipmap/ic_launcher"
|
|
android:theme="@style/AppTheme"
|
|
tools:ignore="AllowBackup">
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:label="@string/app_name"
|
|
android:launchMode="singleTask">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".player.PlayVideoActivity"
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
android:theme="@style/VideoPlayerTheme"
|
|
tools:ignore="UnusedAttribute" />
|
|
|
|
<service
|
|
android:name=".player.BackgroundPlayer"
|
|
android:exported="false"
|
|
android:label="@string/background_player_name" />
|
|
|
|
<activity
|
|
android:name=".player.MainVideoPlayer"
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
|
|
android:label="@string/app_name"
|
|
android:launchMode="singleTask"
|
|
android:theme="@style/PlayerTheme"/>
|
|
|
|
<activity
|
|
android:name=".settings.SettingsActivity"
|
|
android:label="@string/settings_activity_title" />
|
|
<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:label="@string/general_error"
|
|
android:theme="@android:style/Theme.NoDisplay" />
|
|
<activity android:name=".report.ErrorActivity" />
|
|
|
|
<!-- giga get related -->
|
|
<activity
|
|
android:name=".download.DownloadActivity"
|
|
android:label="@string/app_name"
|
|
android:launchMode="singleTask"
|
|
android:theme="@style/AppTheme" />
|
|
|
|
<service android:name="us.shandian.giga.service.DownloadManagerService" />
|
|
|
|
<activity
|
|
android:name="com.nononsenseapps.filepicker.FilePickerActivity"
|
|
android:label="@string/app_name"
|
|
android:launchMode="singleTop"
|
|
android:theme="@style/FilePickerTheme"/>
|
|
<activity
|
|
android:name=".ReCaptchaActivity"
|
|
android:label="@string/reCaptchaActivity" />
|
|
|
|
<provider
|
|
android:name="android.support.v4.content.FileProvider"
|
|
android:authorities="${applicationId}.provider"
|
|
android:exported="false"
|
|
android:grantUriPermissions="true">
|
|
<meta-data
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
android:resource="@xml/provider_paths" />
|
|
</provider>
|
|
|
|
<activity
|
|
android:name=".RouterActivity"
|
|
android:taskAffinity=""
|
|
android:theme="@android:style/Theme.NoDisplay">
|
|
<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" />
|
|
<!-- video prefix -->
|
|
<data android:pathPrefix="/v/" />
|
|
<data android:pathPrefix="/embed/" />
|
|
<data android:pathPrefix="/watch" />
|
|
<data android:pathPrefix="/attribution_link" />
|
|
<!-- channel prefix -->
|
|
<data android:pathPrefix="/channel/"/>
|
|
<data android:pathPrefix="/user/"/>
|
|
</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="http" />
|
|
<data android:scheme="https" />
|
|
<data android:host="youtu.be" />
|
|
<data android:pathPrefix="/" />
|
|
</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>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="text/plain" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".RouterPopupActivity"
|
|
android:taskAffinity=""
|
|
android:theme="@android:style/Theme.NoDisplay"
|
|
android:label="@string/popup_mode_share_menu_title">
|
|
<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" />
|
|
<!-- video prefix -->
|
|
<data android:pathPrefix="/v/" />
|
|
<data android:pathPrefix="/embed/" />
|
|
<data android:pathPrefix="/watch" />
|
|
<data android:pathPrefix="/attribution_link" />
|
|
</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="http" />
|
|
<data android:scheme="https" />
|
|
<data android:host="youtu.be" />
|
|
<data android:pathPrefix="/" />
|
|
</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>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.SEND" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<data android:mimeType="text/plain" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<service android:name=".player.PopupVideoPlayer"/>
|
|
|
|
</application>
|
|
|
|
</manifest>
|