NewPipe/app/src/main/AndroidManifest.xml

180 lines
7.3 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
2016-08-02 01:26:12 +02:00
android:name=".MainActivity"
2016-02-24 23:12:02 +01:00
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
2016-08-02 21:17:54 +02:00
android:name=".detail.VideoItemDetailActivity"
2016-02-24 23:12:02 +01:00
android:label="@string/title_videoitem_detail"
android:launchMode="singleTask"
2016-02-24 23:12:02 +01:00
android:theme="@style/AppTheme">
2015-09-04 02:15:03 +02:00
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".MainActivity" />
2015-09-04 02:15:03 +02:00
</activity>
2016-02-24 23:12:02 +01:00
<activity
2016-03-05 16:54:24 +01:00
android:name=".player.PlayVideoActivity"
2015-09-04 02:15:03 +02:00
android:configChanges="orientation|keyboardHidden|screenSize"
2016-02-24 23:12:02 +01:00
android:theme="@style/VideoPlayerTheme"
2016-07-26 13:50:52 +02:00
tools:ignore="UnusedAttribute" />
<service
2016-03-05 16:54:24 +01:00
android:name=".player.BackgroundPlayer"
2016-02-24 23:12:02 +01:00
android:exported="false"
2016-07-26 13:50:52 +02:00
android:label="@string/background_player_name" />
<activity
2016-02-22 20:28:37 +01:00
android:name=".player.ExoPlayerActivity"
2016-02-16 03:49:58 +01:00
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" />
2016-02-24 23:12:02 +01:00
2016-02-16 03:49:58 +01:00
<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>
2015-09-04 02:15:03 +02:00
</activity>
2016-07-26 13:50:52 +02:00
<service
2016-02-22 20:28:37 +01:00
android:name=".player.BackgroundPlayer"
2016-07-26 13:50:52 +02:00
android:exported="false"
android:label="@string/background_player_name" />
2015-09-04 02:15:03 +02:00
<activity
2016-08-02 21:17:54 +02:00
android:name=".settings.SettingsActivity"
2016-03-05 16:54:24 +01:00
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" />
2016-02-24 23:12:02 +01:00
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".ExitActivity"
2016-02-25 03:43:13 +01:00
android:label="@string/general_error"
android:theme="@android:style/Theme.NoDisplay" />
2016-09-13 23:39:32 +02:00
<activity android:name=".report.ErrorActivity" />
2016-05-25 22:34:36 +02:00
<!-- giga get related -->
<activity
2016-09-27 21:33:26 +02:00
android:name=".download.DownloadActivity"
android:label="@string/app_name"
2016-07-26 13:50:52 +02:00
android:launchMode="singleTask"
2016-08-02 01:26:12 +02:00
android:theme="@style/AppTheme" />
2016-07-26 13:50:52 +02:00
<service android:name="us.shandian.giga.service.DownloadManagerService" />
<activity
android:name="com.nononsenseapps.filepicker.FilePickerActivity"
android:label="@string/app_name"
2017-02-27 21:14:03 +01:00
android:launchMode="singleTop"
android:theme="@style/FilePickerTheme"/>
2016-07-26 13:50:52 +02:00
<activity
android:name=".ChannelActivity"
2017-02-27 21:14:03 +01:00
android:launchMode="singleTask" />
<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"
2017-02-27 21:14:03 +01:00
android:resource="@xml/provider_paths" />
</provider>
2017-02-27 21:14:03 +01:00
<activity android:name=".RouterActivity"
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="/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>
2015-09-04 02:15:03 +02:00
</application>
2016-07-26 13:50:52 +02:00
</manifest>