mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2024-11-16 23:04:56 +00:00
54eb353d0d
* ReCaptchas are implemented using a simple WebView with Javascript enable. * All HTTP responses inside the WebView are catched (using onPageFinished()) ** When Google reCatcha cookies are detected, register cookies to the Downloader class and Return to MainActivity
161 lines
6.5 KiB
XML
161 lines
6.5 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" />
|
|
|
|
<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">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".detail.VideoItemDetailActivity"
|
|
android:label="@string/title_videoitem_detail"
|
|
android:launchMode="singleTask"
|
|
android:theme="@style/AppTheme">
|
|
<meta-data
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
android:value=".MainActivity" />
|
|
|
|
<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" />
|
|
<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>
|
|
</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.ExoPlayerActivity"
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
|
|
android:label="@string/app_name"
|
|
android:launchMode="singleInstance"
|
|
android:theme="@style/PlayerTheme">
|
|
<intent-filter>
|
|
<action android:name="org.schabi.newpipe.exoplayer.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:scheme="http" />
|
|
<data android:scheme="https" />
|
|
<data android:scheme="content" />
|
|
<data android:scheme="asset" />
|
|
<data android:scheme="file" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<service
|
|
android:name=".player.BackgroundPlayer"
|
|
android:exported="false"
|
|
android:label="@string/background_player_name" />
|
|
|
|
<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:theme="@style/FilePickerTheme"
|
|
android:launchMode="singleTop">
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".ChannelActivity"
|
|
android:label="@string/title_activity_channel"
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
<activity
|
|
android:name=".ReCaptchaActivity"
|
|
android:label="@string/reCaptchaActivity" />
|
|
</application>
|
|
|
|
</manifest> |