AquaStream/app/src/main/AndroidManifest.xml

152 lines
9.1 KiB
XML
Raw Normal View History

2021-04-30 17:20:15 +00:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2021-06-10 23:00:22 +00:00
xmlns:tools="http://schemas.android.com/tools" package="com.lagradost.cloudstream3">
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
2021-05-15 23:37:42 +00:00
<uses-permission android:name="android.permission.INTERNET"/>
2021-05-20 21:25:41 +00:00
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
2021-06-29 23:14:48 +00:00
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
2021-05-20 21:25:41 +00:00
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
2021-05-23 17:07:43 +00:00
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
2021-06-10 23:00:22 +00:00
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>
2022-02-13 00:53:40 +00:00
<uses-permission android:name="com.android.providers.tv.permission.WRITE_EPG_DATA" />
2021-04-30 17:20:15 +00:00
2021-10-30 11:33:35 +00:00
<uses-feature android:name="android.hardware.touchscreen"
android:required="false"/>
<uses-feature android:name="android.software.leanback"
android:required="false"/>
2021-04-30 17:20:15 +00:00
<application
2021-07-26 18:29:04 +00:00
android:name=".AcraApplication"
2021-04-30 17:20:15 +00:00
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
2021-10-30 11:33:35 +00:00
android:banner="@mipmap/ic_banner"
2021-04-30 17:20:15 +00:00
android:label="@string/app_name"
android:usesCleartextTraffic="true"
2021-04-30 17:20:15 +00:00
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
2022-01-07 19:27:25 +00:00
android:theme="@style/AppTheme"
android:fullBackupContent="@xml/backup_descriptor"
android:appCategory="video"
tools:targetApi="o">
2021-06-06 18:06:01 +00:00
<meta-data
android:name="com.google.android.gms.cast.framework.OPTIONS_PROVIDER_CLASS_NAME"
android:value="com.lagradost.cloudstream3.utils.CastOptionsProvider"/>
2022-01-07 19:27:25 +00:00
<activity android:name=".ui.player.DownloadedPlayerActivity"
android:screenOrientation="userLandscape"
android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout|keyboard|keyboardHidden|navigation"
android:resizeableActivity="true"
android:supportsPictureInPicture="true"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:scheme="content"/>
<data android:mimeType="video/*"/>
</intent-filter>
</activity>
2021-04-30 17:20:15 +00:00
<activity
2021-10-13 19:16:46 +00:00
android:exported="true"
2021-04-30 17:20:15 +00:00
android:name=".MainActivity"
2021-12-12 02:33:17 +00:00
android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout|keyboard|keyboardHidden|navigation"
2021-06-10 23:00:22 +00:00
android:label="@string/app_name"
android:resizeableActivity="true"
android:supportsPictureInPicture="true">
2021-10-13 19:16:46 +00:00
<intent-filter
android:exported="true">
2021-04-30 17:20:15 +00:00
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
2021-10-30 11:33:35 +00:00
<category android:name="android.intent.category.LEANBACK_LAUNCHER"/>
2021-04-30 17:20:15 +00:00
</intent-filter>
2021-10-13 19:16:46 +00:00
<intent-filter
android:exported="true">
<action android:name="android.intent.action.VIEW"/>
2021-06-10 18:21:42 +00:00
<category android:name="android.intent.category.BROWSABLE"/>
<category android:name="android.intent.category.DEFAULT"/>
2022-01-31 20:47:59 +00:00
<data android:scheme="https" android:host="pelisplus.icu" android:pathPrefix="/"/>
<data android:scheme="https" android:host="pelisplushd.net" android:pathPrefix="/"/>
<data android:scheme="https" android:host="pelismart.com" android:pathPrefix="/"/>
2022-03-04 15:43:34 +00:00
<data android:scheme="https" android:host="gogoanime.film" android:pathPrefix="/"/>
2021-12-04 22:40:24 +00:00
<data android:scheme="https" android:host="allanime.site" android:pathPrefix="/"/>
2022-03-04 15:43:34 +00:00
<data android:scheme="https" android:host="animekisa.in" android:pathPrefix="/"/>
<data android:scheme="https" android:host="animeflick.net" android:pathPrefix="/"/>
2022-03-04 15:43:34 +00:00
<data android:scheme="https" android:host="www3.animeflv.net" android:pathPrefix="/"/>
<data android:scheme="https" android:host="tenshi.moe" android:pathPrefix="/"/>
<data android:scheme="https" android:host="wcostream.cc" android:pathPrefix="/"/>
<data android:scheme="https" android:host="bestdubbedanime.com" android:pathPrefix="/"/>
2022-01-31 20:47:59 +00:00
<data android:scheme="https" android:host="doramasyt.com" android:pathPrefix="/"/>
<data android:scheme="https" android:host="cinecalidad.lol" android:pathPrefix="/"/>
2022-02-05 22:43:54 +00:00
<data android:scheme="https" android:host="cuevana3.io" android:pathPrefix="/"/>
<data android:scheme="https" android:host="entrepeliculasyseries.nu" android:pathPrefix="/"/>
<data android:scheme="https" android:host="pelisflix.li" android:pathPrefix="/"/>
<data android:scheme="https" android:host="seriesflix.video" android:pathPrefix="/"/>
2022-01-31 20:47:59 +00:00
<data android:scheme="https" android:host="ihavenotv.com" android:pathPrefix="/"/>
<data android:scheme="https" android:host="www.vmovee.watch" android:pathPrefix="/"/>
<data android:scheme="https" android:host="www.wcostream.com" android:pathPrefix="/"/>
2021-12-04 22:40:24 +00:00
<data android:scheme="https" android:host="allmoviesforyou.net" android:pathPrefix="/"/>
2022-01-31 20:47:59 +00:00
<data android:scheme="https" android:host="monoschinos2.com" android:pathPrefix="/"/>
<data android:scheme="https" android:host="vidembed.cc" android:pathPrefix="/"/>
2021-12-04 22:40:24 +00:00
<data android:scheme="https" android:host="vf-film.me" android:pathPrefix="/"/>
<data android:scheme="https" android:host="vf-serie.org" android:pathPrefix="/"/>
2022-01-31 20:47:59 +00:00
<data android:scheme="https" android:host="french-stream.re" android:pathPrefix="/"/>
2021-12-04 22:40:24 +00:00
<data android:scheme="https" android:host="asianembed.io" android:pathPrefix="/"/>
2022-03-04 15:43:34 +00:00
<data android:scheme="https" android:host="bflix.ru" android:pathPrefix="/"/>
<data android:scheme="https" android:host="fmovies.to" android:pathPrefix="/"/>
<data android:scheme="https" android:host="sflix.pro" android:pathPrefix="/"/>
2022-01-31 20:47:59 +00:00
<data android:scheme="https" android:host="filman.cc" android:pathPrefix="/"/>
2021-12-04 22:40:24 +00:00
<data android:scheme="https" android:host="zoro.to" android:pathPrefix="/"/>
2022-01-31 20:47:59 +00:00
<data android:scheme="https" android:host="pinoymoviepedia.ru" android:pathPrefix="/"/>
<data android:scheme="https" android:host="www.pinoy-hd.xyz" android:pathPrefix="/"/>
<data android:scheme="https" android:host="pinoymovies.es" android:pathPrefix="/"/>
<data android:scheme="https" android:host="trailers.to" android:pathPrefix="/"/>
<data android:scheme="https" android:host="dramasee.net" android:pathPrefix="/"/>
<data android:scheme="https" android:host="watchasian.sh" android:pathPrefix="/"/>
<data android:scheme="https" android:host="kdramahood.com" android:pathPrefix="/"/>
<data android:scheme="https" android:host="akwam.io" android:pathPrefix="/"/>
<data android:scheme="https" android:host="animepahe.com" android:pathPrefix="/"/>
2022-03-04 15:43:34 +00:00
<data android:scheme="https" android:host="9anime.center" android:pathPrefix="/"/>
2021-12-04 22:40:24 +00:00
<data android:scheme="https" android:host="asiaflix.app" android:pathPrefix="/"/>
</intent-filter>
2021-11-07 22:10:19 +00:00
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="cloudstreamapp"/>
</intent-filter>
</activity>
2021-07-08 17:46:47 +00:00
<receiver
2021-07-08 19:39:49 +00:00
android:name=".receivers.VideoDownloadRestartReceiver"
android:enabled="false"
2021-07-08 17:46:47 +00:00
android:exported="true">
2021-10-13 19:16:46 +00:00
<intent-filter android:exported="true">
2021-10-30 11:33:35 +00:00
<action android:name="restart_service"/>
2021-07-08 17:46:47 +00:00
</intent-filter>
</receiver>
2021-07-04 17:00:04 +00:00
<service
android:name=".services.VideoDownloadService"
android:enabled="true"
android:exported="false">
</service>
2021-10-13 19:16:46 +00:00
<activity
android:exported="false"
android:name=".ui.ControllerActivity">
2021-06-10 18:21:42 +00:00
</activity>
2021-05-20 21:25:41 +00:00
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
2022-02-13 00:53:40 +00:00
android:enabled="true"
2021-05-20 21:25:41 +00:00
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>
2021-04-30 17:20:15 +00:00
</application>
</manifest>