2015-09-04 00:15:03 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-04-11 18:35:04 +00:00
|
|
|
<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"
|
2021-04-10 09:15:33 +00:00
|
|
|
package="org.schabi.newpipe"
|
|
|
|
android:installLocation="auto">
|
2016-02-24 22:12:02 +00:00
|
|
|
|
2020-04-11 18:35:04 +00:00
|
|
|
<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" />
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2016-02-24 22:12:02 +00:00
|
|
|
|
2020-04-11 18:35:04 +00:00
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.touchscreen"
|
|
|
|
android:required="false" />
|
2016-02-24 22:12:02 +00:00
|
|
|
|
2015-09-04 00:15:03 +00:00
|
|
|
<application
|
2016-01-01 21:16:41 +00:00
|
|
|
android:name=".App"
|
2015-09-04 00:15:03 +00:00
|
|
|
android:allowBackup="true"
|
2020-04-11 18:35:04 +00:00
|
|
|
android:banner="@mipmap/newpipe_tv_banner"
|
2015-09-04 00:15:03 +00:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2016-02-24 22:12:02 +00:00
|
|
|
android:logo="@mipmap/ic_launcher"
|
2020-05-30 06:05:40 +00:00
|
|
|
android:requestLegacyExternalStorage="true"
|
2018-01-30 07:01:57 +00:00
|
|
|
android:theme="@style/OpeningTheme"
|
2020-08-03 16:40:26 +00:00
|
|
|
android:resizeableActivity="true"
|
2015-11-26 18:11:31 +00:00
|
|
|
tools:ignore="AllowBackup">
|
2015-09-04 00:15:03 +00:00
|
|
|
<activity
|
2016-08-01 23:26:12 +00:00
|
|
|
android:name=".MainActivity"
|
2017-08-12 04:50:25 +00:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:launchMode="singleTask">
|
2015-09-04 00:15:03 +00:00
|
|
|
<intent-filter>
|
2020-04-11 18:35:04 +00:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
|
2015-09-04 00:15:03 +00:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-04-09 17:34:00 +00:00
|
|
|
|
2020-04-11 18:35:04 +00:00
|
|
|
<receiver android:name="androidx.media.session.MediaButtonReceiver">
|
2018-03-21 07:11:54 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MEDIA_BUTTON" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2019-12-29 21:15:01 +00:00
|
|
|
<service
|
2020-09-08 19:59:39 +00:00
|
|
|
android:name=".player.MainPlayer"
|
|
|
|
android:exported="false"
|
|
|
|
android:foregroundServiceType="mediaPlayback">
|
2019-12-29 21:15:01 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MEDIA_BUTTON" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
2017-10-03 06:38:46 +00:00
|
|
|
<activity
|
2021-01-12 20:15:06 +00:00
|
|
|
android:name=".player.PlayQueueActivity"
|
2020-07-25 06:39:42 +00:00
|
|
|
android:label="@string/title_activity_play_queue"
|
2020-04-11 18:35:04 +00:00
|
|
|
android:launchMode="singleTask" />
|
2017-10-13 01:22:25 +00:00
|
|
|
|
2015-09-04 00:15:03 +00:00
|
|
|
<activity
|
2016-08-02 19:17:54 +00:00
|
|
|
android:name=".settings.SettingsActivity"
|
2020-04-11 18:35:04 +00:00
|
|
|
android:label="@string/settings" />
|
2017-09-03 06:04:18 +00:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".about.AboutActivity"
|
2020-04-11 18:35:04 +00:00
|
|
|
android:label="@string/title_activity_about" />
|
2017-09-03 06:04:18 +00:00
|
|
|
|
2020-04-11 18:35:04 +00:00
|
|
|
<service android:name=".local.subscription.services.SubscriptionsImportService" />
|
|
|
|
<service android:name=".local.subscription.services.SubscriptionsExportService" />
|
|
|
|
<service android:name=".local.feed.service.FeedLoadService" />
|
2018-03-08 13:39:24 +00:00
|
|
|
|
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>
|
2020-04-11 18:35:04 +00:00
|
|
|
<action android:name="info.guardianproject.panic.action.TRIGGER" />
|
2016-02-24 22:12:02 +00:00
|
|
|
|
2020-04-11 18:35:04 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2015-12-31 20:53:14 +00:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-09-03 06:04:18 +00:00
|
|
|
|
2015-12-31 20:53:14 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ExitActivity"
|
2016-02-25 02:43:13 +00:00
|
|
|
android:label="@string/general_error"
|
2020-04-11 18:35:04 +00:00
|
|
|
android:theme="@android:style/Theme.NoDisplay" />
|
2020-12-09 11:42:01 +00:00
|
|
|
<activity android:name=".error.ErrorActivity" />
|
2016-04-21 23:28:01 +00:00
|
|
|
|
2016-05-25 20:34:36 +00:00
|
|
|
<!-- giga get related -->
|
2016-04-21 23:28:01 +00:00
|
|
|
<activity
|
2016-09-27 19:33:26 +00:00
|
|
|
android:name=".download.DownloadActivity"
|
2016-04-21 23:28:01 +00:00
|
|
|
android:label="@string/app_name"
|
2020-04-11 18:35:04 +00:00
|
|
|
android:launchMode="singleTask" />
|
2016-04-21 23:28:01 +00:00
|
|
|
|
2020-04-11 18:35:04 +00:00
|
|
|
<service android:name="us.shandian.giga.service.DownloadManagerService" />
|
2016-04-21 23:28:01 +00:00
|
|
|
|
2016-05-26 14:59:12 +00:00
|
|
|
<activity
|
2017-09-18 12:29:43 +00:00
|
|
|
android:name=".util.FilePickerActivityHelper"
|
2016-05-26 14:59:12 +00:00
|
|
|
android:label="@string/app_name"
|
2017-09-18 12:29:43 +00:00
|
|
|
android:theme="@style/FilePickerThemeDark">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.GET_CONTENT" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-09-03 06:04:18 +00:00
|
|
|
|
2016-12-07 17:34:39 +00:00
|
|
|
<activity
|
2020-12-09 11:42:01 +00:00
|
|
|
android:name=".error.ReCaptchaActivity"
|
2020-04-11 18:35:04 +00:00
|
|
|
android:label="@string/recaptcha" />
|
2017-01-10 10:41:24 +00:00
|
|
|
|
|
|
|
<provider
|
2019-10-04 12:59:08 +00:00
|
|
|
android:name="androidx.core.content.FileProvider"
|
2017-01-10 10:41:24 +00:00
|
|
|
android:authorities="${applicationId}.provider"
|
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
2020-04-11 18:35:04 +00:00
|
|
|
android:resource="@xml/nnf_provider_paths" />
|
2017-01-10 10:41:24 +00:00
|
|
|
</provider>
|
2017-02-27 20:14:03 +00:00
|
|
|
|
2017-04-09 17:34:00 +00:00
|
|
|
<activity
|
|
|
|
android:name=".RouterActivity"
|
2018-02-12 18:44:35 +00:00
|
|
|
android:excludeFromRecents="true"
|
2018-04-07 18:36:52 +00:00
|
|
|
android:label="@string/preferred_open_action_share_menu_title"
|
2017-04-09 17:34:00 +00:00
|
|
|
android:taskAffinity=""
|
2018-01-23 00:40:00 +00:00
|
|
|
android:theme="@style/RouterActivityThemeDark">
|
2018-02-12 18:44:35 +00:00
|
|
|
|
|
|
|
<!-- Youtube filter -->
|
2017-02-27 20:14:03 +00:00
|
|
|
<intent-filter>
|
2020-04-11 18:35:04 +00:00
|
|
|
<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:host="music.youtube.com" />
|
2017-02-27 20:14:03 +00:00
|
|
|
<!-- video prefix -->
|
2020-04-11 18:35:04 +00:00
|
|
|
<data android:pathPrefix="/v/" />
|
|
|
|
<data android:pathPrefix="/embed/" />
|
|
|
|
<data android:pathPrefix="/watch" />
|
|
|
|
<data android:pathPrefix="/attribution_link" />
|
2017-02-27 20:14:03 +00:00
|
|
|
<!-- channel prefix -->
|
2020-04-11 18:35:04 +00:00
|
|
|
<data android:pathPrefix="/channel/" />
|
|
|
|
<data android:pathPrefix="/user/" />
|
|
|
|
<data android:pathPrefix="/c/" />
|
2017-09-03 06:04:18 +00:00
|
|
|
<!-- playlist prefix -->
|
2020-04-11 18:35:04 +00:00
|
|
|
<data android:pathPrefix="/playlist" />
|
2017-02-27 20:14:03 +00:00
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
2020-04-11 18:35:04 +00:00
|
|
|
<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" />
|
2017-02-27 20:14:03 +00:00
|
|
|
|
2020-04-11 18:35:04 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2017-02-27 20:14:03 +00:00
|
|
|
|
2020-04-11 18:35:04 +00:00
|
|
|
<data android:scheme="http" />
|
|
|
|
<data android:scheme="https" />
|
|
|
|
<data android:host="youtu.be" />
|
|
|
|
<data android:pathPrefix="/" />
|
2017-02-27 20:14:03 +00:00
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
2020-04-11 18:35:04 +00:00
|
|
|
<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" />
|
2017-02-27 20:14:03 +00:00
|
|
|
|
2020-04-11 18:35:04 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2017-02-27 20:14:03 +00:00
|
|
|
|
2020-04-11 18:35:04 +00:00
|
|
|
<data android:scheme="http" />
|
|
|
|
<data android:scheme="https" />
|
|
|
|
<data android:host="www.youtube-nocookie.com" />
|
|
|
|
<data android:pathPrefix="/embed/" />
|
2019-02-09 11:30:14 +00:00
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
2020-04-11 18:35:04 +00:00
|
|
|
<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" />
|
2019-02-09 11:30:14 +00:00
|
|
|
|
2020-04-11 18:35:04 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2019-02-09 11:30:14 +00:00
|
|
|
|
2020-04-11 18:35:04 +00:00
|
|
|
<data android:scheme="vnd.youtube" />
|
|
|
|
<data android:scheme="vnd.youtube.launch" />
|
2017-02-27 20:14:03 +00:00
|
|
|
</intent-filter>
|
2018-01-23 00:40:00 +00:00
|
|
|
|
2018-02-12 18:44:35 +00:00
|
|
|
<!-- Hooktube filter -->
|
2017-03-09 07:42:40 +00:00
|
|
|
<intent-filter>
|
2020-04-11 18:35:04 +00:00
|
|
|
<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" />
|
2017-06-05 19:33:01 +00:00
|
|
|
|
2020-04-11 18:35:04 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2017-06-05 19:33:01 +00:00
|
|
|
|
2020-04-11 18:35:04 +00:00
|
|
|
<data android:scheme="http" />
|
|
|
|
<data android:scheme="https" />
|
|
|
|
<data android:host="hooktube.com" />
|
|
|
|
<data android:host="*.hooktube.com" />
|
2017-03-09 07:42:40 +00:00
|
|
|
<!-- video prefix -->
|
2020-04-11 18:35:04 +00:00
|
|
|
<data android:pathPrefix="/v/" />
|
|
|
|
<data android:pathPrefix="/embed/" />
|
|
|
|
<data android:pathPrefix="/watch" />
|
2018-01-23 00:40:00 +00:00
|
|
|
<!-- channel prefix -->
|
2020-04-11 18:35:04 +00:00
|
|
|
<data android:pathPrefix="/channel/" />
|
|
|
|
<data android:pathPrefix="/user/" />
|
2017-03-09 07:42:40 +00:00
|
|
|
</intent-filter>
|
2018-02-12 18:44:35 +00:00
|
|
|
|
2018-11-23 18:18:34 +00:00
|
|
|
<!-- Invidious filter -->
|
|
|
|
<intent-filter>
|
2020-04-11 18:35:04 +00:00
|
|
|
<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="invidio.us" />
|
|
|
|
<data android:host="dev.invidio.us" />
|
|
|
|
<data android:host="www.invidio.us" />
|
2021-01-22 18:25:21 +00:00
|
|
|
<data android:host="redirect.invidious.io" />
|
2020-04-11 18:35:04 +00:00
|
|
|
<data android:host="invidious.snopyta.org" />
|
2020-07-02 19:41:23 +00:00
|
|
|
<data android:host="yewtu.be" />
|
2020-11-11 15:20:42 +00:00
|
|
|
<data android:host="tube.connect.cafe" />
|
|
|
|
<data android:host="invidious.zapashcanon.fr" />
|
|
|
|
<data android:host="invidious.kavin.rocks" />
|
|
|
|
<data android:host="invidious.tube" />
|
|
|
|
<data android:host="invidious.site" />
|
|
|
|
<data android:host="invidious.xyz" />
|
|
|
|
<data android:host="vid.mint.lgbt" />
|
|
|
|
<data android:host="invidiou.site" />
|
2020-07-02 19:41:23 +00:00
|
|
|
<data android:host="invidious.fdn.fr" />
|
2021-01-22 18:25:21 +00:00
|
|
|
<data android:host="invidious.048596.xyz" />
|
|
|
|
<data android:host="invidious.zee.li" />
|
|
|
|
<data android:host="vid.puffyan.us" />
|
|
|
|
<data android:host="ytprivate.com" />
|
2020-04-11 18:35:04 +00:00
|
|
|
<data android:pathPrefix="/" />
|
2018-11-23 18:18:34 +00:00
|
|
|
</intent-filter>
|
|
|
|
|
2018-02-12 18:44:35 +00:00
|
|
|
<!-- Soundcloud filter -->
|
2017-03-09 07:42:40 +00:00
|
|
|
<intent-filter>
|
2020-04-11 18:35:04 +00:00
|
|
|
<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="soundcloud.com" />
|
|
|
|
<data android:host="m.soundcloud.com" />
|
|
|
|
<data android:host="www.soundcloud.com" />
|
|
|
|
<data android:pathPrefix="/" />
|
2017-03-09 07:42:40 +00:00
|
|
|
</intent-filter>
|
|
|
|
|
2018-02-12 18:44:35 +00:00
|
|
|
<!-- Share filter -->
|
2017-03-09 07:42:40 +00:00
|
|
|
<intent-filter>
|
2020-04-11 18:35:04 +00:00
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="text/plain" />
|
2017-03-09 07:42:40 +00:00
|
|
|
</intent-filter>
|
2018-02-12 18:44:35 +00:00
|
|
|
|
2020-12-23 18:58:02 +00:00
|
|
|
<!-- media.ccc.de filter -->
|
2020-02-12 01:05:34 +00:00
|
|
|
<intent-filter>
|
2020-04-11 18:35:04 +00:00
|
|
|
<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" />
|
2020-02-12 01:05:34 +00:00
|
|
|
|
2020-04-11 18:35:04 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2020-02-12 01:05:34 +00:00
|
|
|
|
2020-04-11 18:35:04 +00:00
|
|
|
<data android:scheme="http" />
|
|
|
|
<data android:scheme="https" />
|
|
|
|
<data android:host="media.ccc.de" />
|
2020-02-12 01:05:34 +00:00
|
|
|
<!-- video prefix -->
|
2020-04-11 18:35:04 +00:00
|
|
|
<data android:pathPrefix="/v/" />
|
2020-02-12 01:05:34 +00:00
|
|
|
<!-- channel prefix-->
|
2020-04-11 18:35:04 +00:00
|
|
|
<data android:pathPrefix="/c/" />
|
|
|
|
<data android:pathPrefix="/b/" />
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<!-- PeerTube 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="framatube.org" />
|
|
|
|
<data android:host="media.assassinate-you.net" />
|
|
|
|
<data android:host="peertube.co.uk" />
|
|
|
|
<data android:host="peertube.cpy.re" />
|
|
|
|
<data android:host="peertube.mastodon.host" />
|
|
|
|
<data android:host="peertube.fr" />
|
2020-11-22 21:10:41 +00:00
|
|
|
<data android:host="tilvids.com" />
|
2020-07-04 09:39:00 +00:00
|
|
|
<data android:host="tube.privacytools.io" />
|
2020-04-11 18:35:04 +00:00
|
|
|
<data android:host="video.ploud.fr" />
|
|
|
|
<data android:host="video.lqdn.fr" />
|
|
|
|
<data android:host="skeptikon.fr" />
|
|
|
|
|
2020-05-05 13:56:31 +00:00
|
|
|
<data android:pathPrefix="/videos/" /> <!-- it contains playlists -->
|
2020-04-11 18:35:04 +00:00
|
|
|
<data android:pathPrefix="/accounts/" />
|
|
|
|
<data android:pathPrefix="/video-channels/" />
|
2020-02-12 01:05:34 +00:00
|
|
|
</intent-filter>
|
2020-06-04 09:05:41 +00:00
|
|
|
|
|
|
|
<!-- Bandcamp 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="bandcamp.com"/>
|
|
|
|
<data android:host="*.bandcamp.com"/>
|
|
|
|
<data android:pathPrefix="/"/>
|
|
|
|
</intent-filter>
|
2020-02-12 01:05:34 +00:00
|
|
|
</activity>
|
2018-02-12 18:44:35 +00:00
|
|
|
<service
|
|
|
|
android:name=".RouterActivity$FetcherService"
|
2020-04-11 18:35:04 +00:00
|
|
|
android:exported="false" />
|
2020-08-03 16:40:26 +00:00
|
|
|
|
2021-01-02 13:39:31 +00:00
|
|
|
<!-- opting out of sending metrics to Google in Android System WebView -->
|
|
|
|
<meta-data android:name="android.webkit.WebView.MetricsOptOut" android:value="true" />
|
2020-08-03 16:40:26 +00:00
|
|
|
<!-- see https://github.com/TeamNewPipe/NewPipe/issues/3947 -->
|
|
|
|
<!-- Version < 3.0. DeX Mode and Screen Mirroring support -->
|
|
|
|
<meta-data android:name="com.samsung.android.keepalive.density" android:value="true"/>
|
|
|
|
<!-- Version >= 3.0. DeX Dual Mode support -->
|
|
|
|
<meta-data android:name="com.samsung.android.multidisplay.keep_process_alive" android:value="true"/>
|
2015-09-04 00:15:03 +00:00
|
|
|
</application>
|
2018-10-20 01:52:22 +00:00
|
|
|
</manifest>
|