2020-11-20 15:38:08 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2023-04-30 19:40:11 +02:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
2020-11-20 15:38:08 +01:00
|
|
|
|
2020-12-08 20:30:21 +01:00
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
|
2021-12-31 21:36:50 +01:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
2021-08-31 15:43:26 +02:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK"/>
|
2023-01-06 23:09:12 +01:00
|
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
|
2023-08-04 23:41:30 +02:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PLAYBACK" />
|
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" />
|
2020-11-20 15:38:08 +01:00
|
|
|
|
|
|
|
|
<application
|
2021-04-12 17:56:09 +02:00
|
|
|
android:name="App"
|
2020-11-20 15:38:08 +01:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:roundIcon="@mipmap/ic_launcher"
|
|
|
|
|
android:supportsRtl="true"
|
2023-05-06 16:43:21 +02:00
|
|
|
android:theme="@style/AppTheme.SplashScreen"
|
2021-08-14 17:06:49 +02:00
|
|
|
android:usesCleartextTraffic="true"
|
2023-08-17 14:07:56 +02:00
|
|
|
android:allowBackup="false"
|
|
|
|
|
android:localeConfig="@xml/locale_config">
|
2022-01-06 11:07:39 +01:00
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="com.google.android.gms.cast.framework.OPTIONS_PROVIDER_CLASS_NAME"
|
|
|
|
|
android:value="androidx.media3.cast.DefaultCastOptionsProvider"/>
|
|
|
|
|
|
2020-11-20 15:38:08 +01:00
|
|
|
<activity
|
2021-04-27 10:44:55 +02:00
|
|
|
android:name=".ui.activity.MainActivity"
|
2021-07-21 16:48:52 +02:00
|
|
|
android:windowSoftInputMode="adjustPan|adjustResize"
|
|
|
|
|
android:exported="true">
|
2020-11-20 15:38:08 +01:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2023-08-17 14:07:56 +02:00
|
|
|
|
2021-12-29 10:19:33 +01:00
|
|
|
<service
|
|
|
|
|
android:name=".service.MediaService"
|
2022-08-26 18:14:29 +02:00
|
|
|
android:foregroundServiceType="mediaPlayback"
|
2021-12-29 10:19:33 +01:00
|
|
|
android:exported="true">
|
2021-04-26 19:17:42 +02:00
|
|
|
<intent-filter>
|
2021-12-29 10:19:33 +01:00
|
|
|
<action android:name="androidx.media3.session.MediaLibraryService" />
|
|
|
|
|
<action android:name="androidx.media3.session.MediaBrowserService" />
|
2021-04-26 19:17:42 +02:00
|
|
|
</intent-filter>
|
|
|
|
|
</service>
|
2023-08-17 14:07:56 +02:00
|
|
|
|
2021-12-31 21:36:50 +01:00
|
|
|
<service android:name=".service.DownloaderService"
|
2023-08-04 23:41:30 +02:00
|
|
|
android:foregroundServiceType="dataSync"
|
2022-01-12 16:51:06 +01:00
|
|
|
android:exported="true">
|
2021-12-31 21:36:50 +01:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="androidx.media3.exoplayer.downloadService.action.RESTART"/>
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</service>
|
2023-08-17 14:07:56 +02:00
|
|
|
|
|
|
|
|
<service
|
|
|
|
|
android:name="androidx.appcompat.app.AppLocalesMetadataHolderService"
|
|
|
|
|
android:enabled="false"
|
|
|
|
|
android:exported="false">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="autoStoreLocales"
|
|
|
|
|
android:value="true" />
|
|
|
|
|
</service>
|
2020-11-20 15:38:08 +01:00
|
|
|
</application>
|
|
|
|
|
</manifest>
|