2015-09-04 02:15:03 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-06-05 21:33:01 +02:00
|
|
|
<manifest
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-11-26 19:11:31 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2016-02-24 23:12:02 +01:00
|
|
|
package="org.schabi.newpipe">
|
|
|
|
|
2017-06-05 21:33:01 +02: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"/>
|
2017-03-09 08:42:40 +01:00
|
|
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
|
2016-02-24 23:12:02 +01:00
|
|
|
|
2015-09-04 02:15:03 +02:00
|
|
|
<application
|
2016-01-01 22:16:41 +01:00
|
|
|
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"
|
2018-01-30 08:01:57 +01:00
|
|
|
android:theme="@style/OpeningTheme"
|
2015-11-26 19:11:31 +01:00
|
|
|
tools:ignore="AllowBackup">
|
2015-09-04 02:15:03 +02:00
|
|
|
<activity
|
2016-08-02 01:26:12 +02:00
|
|
|
android:name=".MainActivity"
|
2017-08-12 06:50:25 +02:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:launchMode="singleTask">
|
2015-09-04 02:15:03 +02:00
|
|
|
<intent-filter>
|
2017-06-05 21:33:01 +02:00
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
2015-09-04 02:15:03 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-04-09 19:34:00 +02:00
|
|
|
|
2018-03-21 08:11:54 +01:00
|
|
|
<receiver android:name="android.support.v4.media.session.MediaButtonReceiver" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MEDIA_BUTTON" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2016-02-24 23:12:02 +01:00
|
|
|
<activity
|
2017-09-03 08:04:18 +02:00
|
|
|
android:name=".player.old.PlayVideoActivity"
|
2015-09-04 02:15:03 +02:00
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
2018-01-30 08:01:57 +01:00
|
|
|
android:theme="@style/OldVideoPlayerTheme"
|
2017-06-05 21:33:01 +02:00
|
|
|
tools:ignore="UnusedAttribute"/>
|
2016-07-26 13:50:52 +02:00
|
|
|
|
2015-11-25 18:18:01 +01:00
|
|
|
<service
|
2016-03-05 16:54:24 +01:00
|
|
|
android:name=".player.BackgroundPlayer"
|
2018-04-03 07:11:53 +02:00
|
|
|
android:exported="false">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MEDIA_BUTTON" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2016-07-26 13:50:52 +02:00
|
|
|
|
2017-10-03 08:38:46 +02:00
|
|
|
<activity
|
|
|
|
android:name=".player.BackgroundPlayerActivity"
|
2017-10-13 03:22:25 +02:00
|
|
|
android:launchMode="singleTask"
|
2017-10-03 08:38:46 +02:00
|
|
|
android:label="@string/title_activity_background_player"/>
|
|
|
|
|
2017-10-13 03:22:25 +02:00
|
|
|
<activity
|
|
|
|
android:name=".player.PopupVideoPlayerActivity"
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:label="@string/title_activity_popup_player"/>
|
|
|
|
|
2017-06-05 21:33:01 +02:00
|
|
|
<service
|
|
|
|
android:name=".player.PopupVideoPlayer"
|
|
|
|
android:exported="false"/>
|
|
|
|
|
2016-07-26 13:50:52 +02:00
|
|
|
<activity
|
2017-04-17 06:19:53 +02:00
|
|
|
android:name=".player.MainVideoPlayer"
|
2016-02-16 03:49:58 +01:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
|
|
|
|
android:label="@string/app_name"
|
2018-01-30 08:01:57 +01:00
|
|
|
android:launchMode="singleTask"/>
|
2016-07-26 13:50:52 +02:00
|
|
|
|
2015-09-04 02:15:03 +02:00
|
|
|
<activity
|
2016-08-02 21:17:54 +02:00
|
|
|
android:name=".settings.SettingsActivity"
|
2017-06-05 21:33:01 +02:00
|
|
|
android:label="@string/settings"/>
|
2017-09-03 08:04:18 +02:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".about.AboutActivity"
|
|
|
|
android:label="@string/title_activity_about"/>
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".history.HistoryActivity"
|
|
|
|
android:label="@string/title_activity_history"/>
|
|
|
|
|
2018-04-15 20:29:58 +02:00
|
|
|
<service android:name=".local.subscription.services.SubscriptionsImportService"/>
|
|
|
|
<service android:name=".local.subscription.services.SubscriptionsExportService"/>
|
2018-03-08 14:39:24 +01:00
|
|
|
|
2015-12-31 21:53:14 +01:00
|
|
|
<activity
|
|
|
|
android:name=".PanicResponderActivity"
|
|
|
|
android:launchMode="singleInstance"
|
|
|
|
android:noHistory="true"
|
|
|
|
android:theme="@android:style/Theme.NoDisplay">
|
|
|
|
<intent-filter>
|
2017-06-05 21:33:01 +02:00
|
|
|
<action android:name="info.guardianproject.panic.action.TRIGGER"/>
|
2016-02-24 23:12:02 +01:00
|
|
|
|
2017-06-05 21:33:01 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
2015-12-31 21:53:14 +01:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-09-03 08:04:18 +02:00
|
|
|
|
2015-12-31 21:53:14 +01:00
|
|
|
<activity
|
|
|
|
android:name=".ExitActivity"
|
2016-02-25 03:43:13 +01:00
|
|
|
android:label="@string/general_error"
|
2017-06-05 21:33:01 +02:00
|
|
|
android:theme="@android:style/Theme.NoDisplay"/>
|
|
|
|
<activity android:name=".report.ErrorActivity"/>
|
2016-04-22 01:28:01 +02:00
|
|
|
|
2016-05-25 22:34:36 +02:00
|
|
|
<!-- giga get related -->
|
2016-04-22 01:28:01 +02:00
|
|
|
<activity
|
2016-09-27 21:33:26 +02:00
|
|
|
android:name=".download.DownloadActivity"
|
2016-04-22 01:28:01 +02:00
|
|
|
android:label="@string/app_name"
|
2017-09-03 08:04:18 +02:00
|
|
|
android:launchMode="singleTask"/>
|
2016-04-22 01:28:01 +02:00
|
|
|
|
2017-06-05 21:33:01 +02:00
|
|
|
<service android:name="us.shandian.giga.service.DownloadManagerService"/>
|
2016-04-22 01:28:01 +02:00
|
|
|
|
2016-05-26 16:59:12 +02:00
|
|
|
<activity
|
2017-09-18 14:29:43 +02:00
|
|
|
android:name=".util.FilePickerActivityHelper"
|
2016-05-26 16:59:12 +02:00
|
|
|
android:label="@string/app_name"
|
2017-09-18 14:29:43 +02: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 08:04:18 +02:00
|
|
|
|
2016-12-07 18:34:39 +01:00
|
|
|
<activity
|
|
|
|
android:name=".ReCaptchaActivity"
|
2017-06-05 21:33:01 +02:00
|
|
|
android:label="@string/reCaptchaActivity"/>
|
2017-01-10 11:41:24 +01:00
|
|
|
|
|
|
|
<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"
|
2018-03-08 14:39:24 +01:00
|
|
|
android:resource="@xml/nnf_provider_paths"/>
|
2017-01-10 11:41:24 +01:00
|
|
|
</provider>
|
2017-02-27 21:14:03 +01:00
|
|
|
|
2017-04-09 19:34:00 +02:00
|
|
|
<activity
|
|
|
|
android:name=".RouterActivity"
|
2018-02-12 19:44:35 +01:00
|
|
|
android:excludeFromRecents="true"
|
2018-04-07 20:36:52 +02:00
|
|
|
android:label="@string/preferred_open_action_share_menu_title"
|
2017-04-09 19:34:00 +02:00
|
|
|
android:taskAffinity=""
|
2018-01-23 01:40:00 +01:00
|
|
|
android:theme="@style/RouterActivityThemeDark">
|
2018-02-12 19:44:35 +01:00
|
|
|
|
|
|
|
<!-- Youtube filter -->
|
2017-02-27 21:14:03 +01:00
|
|
|
<intent-filter>
|
2017-06-05 21:33:01 +02: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"/>
|
2017-02-27 21:14:03 +01:00
|
|
|
<!-- video prefix -->
|
2017-06-05 21:33:01 +02:00
|
|
|
<data android:pathPrefix="/v/"/>
|
|
|
|
<data android:pathPrefix="/embed/"/>
|
|
|
|
<data android:pathPrefix="/watch"/>
|
|
|
|
<data android:pathPrefix="/attribution_link"/>
|
2017-02-27 21:14:03 +01:00
|
|
|
<!-- channel prefix -->
|
|
|
|
<data android:pathPrefix="/channel/"/>
|
|
|
|
<data android:pathPrefix="/user/"/>
|
2017-09-03 08:04:18 +02:00
|
|
|
<!-- playlist prefix -->
|
|
|
|
<data android:pathPrefix="/playlist"/>
|
2017-02-27 21:14:03 +01:00
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
2017-06-05 21:33:01 +02: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 21:14:03 +01:00
|
|
|
|
2017-06-05 21:33:01 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
2017-02-27 21:14:03 +01:00
|
|
|
|
2017-06-05 21:33:01 +02:00
|
|
|
<data android:scheme="http"/>
|
|
|
|
<data android:scheme="https"/>
|
|
|
|
<data android:host="youtu.be"/>
|
|
|
|
<data android:pathPrefix="/"/>
|
2017-02-27 21:14:03 +01:00
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
2017-06-05 21:33:01 +02: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 21:14:03 +01:00
|
|
|
|
2017-06-05 21:33:01 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
2017-02-27 21:14:03 +01:00
|
|
|
|
2017-06-05 21:33:01 +02:00
|
|
|
<data android:scheme="vnd.youtube"/>
|
|
|
|
<data android:scheme="vnd.youtube.launch"/>
|
2017-02-27 21:14:03 +01:00
|
|
|
</intent-filter>
|
2018-01-23 01:40:00 +01:00
|
|
|
|
2018-02-12 19:44:35 +01:00
|
|
|
<!-- Hooktube filter -->
|
2017-03-09 08:42:40 +01:00
|
|
|
<intent-filter>
|
2017-06-05 21:33:01 +02: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"/>
|
2018-02-12 19:44:35 +01:00
|
|
|
<data android:host="hooktube.com"/>
|
|
|
|
<data android:host="*.hooktube.com"/>
|
2017-03-09 08:42:40 +01:00
|
|
|
<!-- video prefix -->
|
2017-06-05 21:33:01 +02:00
|
|
|
<data android:pathPrefix="/v/"/>
|
|
|
|
<data android:pathPrefix="/embed/"/>
|
|
|
|
<data android:pathPrefix="/watch"/>
|
2018-01-23 01:40:00 +01:00
|
|
|
<!-- channel prefix -->
|
|
|
|
<data android:pathPrefix="/channel/"/>
|
|
|
|
<data android:pathPrefix="/user/"/>
|
2017-03-09 08:42:40 +01:00
|
|
|
</intent-filter>
|
2018-02-12 19:44:35 +01:00
|
|
|
|
|
|
|
<!-- Soundcloud filter -->
|
2017-03-09 08:42:40 +01:00
|
|
|
<intent-filter>
|
2017-06-05 21:33:01 +02: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-03-09 08:42:40 +01:00
|
|
|
|
2017-06-05 21:33:01 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
2017-03-09 08:42:40 +01:00
|
|
|
|
2017-06-05 21:33:01 +02:00
|
|
|
<data android:scheme="http"/>
|
|
|
|
<data android:scheme="https"/>
|
2018-02-12 19:44:35 +01:00
|
|
|
<data android:host="soundcloud.com"/>
|
|
|
|
<data android:host="m.soundcloud.com"/>
|
|
|
|
<data android:host="www.soundcloud.com"/>
|
2017-06-05 21:33:01 +02:00
|
|
|
<data android:pathPrefix="/"/>
|
2017-03-09 08:42:40 +01:00
|
|
|
</intent-filter>
|
|
|
|
|
2018-02-12 19:44:35 +01:00
|
|
|
<!-- Share filter -->
|
2017-03-09 08:42:40 +01:00
|
|
|
<intent-filter>
|
2017-06-05 21:33:01 +02:00
|
|
|
<action android:name="android.intent.action.SEND"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<data android:mimeType="text/plain"/>
|
2017-03-09 08:42:40 +01:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2018-02-12 19:44:35 +01:00
|
|
|
|
|
|
|
<service
|
|
|
|
android:name=".RouterActivity$FetcherService"
|
|
|
|
android:exported="false"/>
|
2015-09-04 02:15:03 +02:00
|
|
|
</application>
|
2017-09-03 08:04:18 +02:00
|
|
|
</manifest>
|