mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
79 lines
No EOL
4 KiB
XML
79 lines
No EOL
4 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="com.lagradost.cloudstream3">
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
|
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>
|
|
|
|
<application
|
|
android:name=".AcraApplication"
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:usesCleartextTraffic="true"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme" android:fullBackupContent="@xml/backup_descriptor" tools:targetApi="m">
|
|
<meta-data
|
|
android:name="com.google.android.gms.cast.framework.OPTIONS_PROVIDER_CLASS_NAME"
|
|
android:value="com.lagradost.cloudstream3.utils.CastOptionsProvider"/>
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout|keyboard|keyboardHidden|navigation"
|
|
android:label="@string/app_name"
|
|
android:resizeableActivity="true"
|
|
android:supportsPictureInPicture="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<data android:scheme="https" android:host="bestdubbedanime.com" android:pathPrefix="/"/>
|
|
<data android:scheme="https" android:host="tenshi.moe" android:pathPrefix="/"/>
|
|
<data android:scheme="https" android:host="www.wcostream.com" android:pathPrefix="/"/>
|
|
<data android:scheme="https" android:host="wcostream.cc" android:pathPrefix="/"/>
|
|
<data android:scheme="https" android:host="hdm.to" android:pathPrefix="/"/>
|
|
<data android:scheme="https" android:host="lookmovie.io" android:pathPrefix="/"/>
|
|
<data android:scheme="https" android:host="trailers.to" android:pathPrefix="/"/>
|
|
<data android:scheme="https" android:host="www.vmovee.watch" android:pathPrefix="/"/>
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<receiver
|
|
android:name=".receivers.VideoDownloadRestartReceiver"
|
|
android:enabled="false"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="restart_service" />
|
|
</intent-filter>
|
|
</receiver>
|
|
<service
|
|
android:name=".services.VideoDownloadService"
|
|
android:enabled="true"
|
|
android:exported="false">
|
|
</service>
|
|
|
|
<activity android:name=".ui.ControllerActivity">
|
|
</activity>
|
|
|
|
<provider
|
|
android:name="androidx.core.content.FileProvider"
|
|
android:authorities="${applicationId}.provider"
|
|
android:exported="false"
|
|
android:grantUriPermissions="true">
|
|
<meta-data
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
android:resource="@xml/provider_paths"/>
|
|
</provider>
|
|
</application>
|
|
</manifest> |