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
|
|
|
|
2023-08-19 11:57:05 +02: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" />
|
2023-08-19 11:57:05 +02:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
|
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
2023-08-04 23:41:30 +02:00
|
|
|
<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"
|
2023-08-19 11:57:05 +02:00
|
|
|
android:allowBackup="false"
|
2020-11-20 15:38:08 +01:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
|
android:label="@string/app_name"
|
2023-08-19 11:57:05 +02:00
|
|
|
android:localeConfig="@xml/locale_config"
|
2023-12-21 09:47:39 +01:00
|
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
2020-11-20 15:38:08 +01:00
|
|
|
android:roundIcon="@mipmap/ic_launcher"
|
|
|
|
|
android:supportsRtl="true"
|
2023-05-06 16:43:21 +02:00
|
|
|
android:theme="@style/AppTheme.SplashScreen"
|
2023-12-21 09:47:39 +01:00
|
|
|
android:usesCleartextTraffic="true">
|
|
|
|
|
|
|
|
|
|
<!-- Declare that this session demo supports Android Auto. -->
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="com.google.android.gms.car.application"
|
|
|
|
|
android:resource="@xml/auto_app_desc" />
|
2022-01-06 11:07:39 +01:00
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="com.google.android.gms.cast.framework.OPTIONS_PROVIDER_CLASS_NAME"
|
2023-08-19 11:57:05 +02:00
|
|
|
android:value="androidx.media3.cast.DefaultCastOptionsProvider" />
|
|
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="androidx.car.app.TintableAttributionIcon"
|
|
|
|
|
android:resource="@drawable/ic_graphic_eq" />
|
2022-01-06 11:07:39 +01:00
|
|
|
|
2020-11-20 15:38:08 +01:00
|
|
|
<activity
|
2021-04-27 10:44:55 +02:00
|
|
|
android:name=".ui.activity.MainActivity"
|
2023-08-19 11:57:05 +02:00
|
|
|
android:exported="true"
|
|
|
|
|
android:windowSoftInputMode="adjustPan|adjustResize">
|
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>
|
2025-10-09 00:08:10 +10:30
|
|
|
<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:host="asset"
|
|
|
|
|
android:scheme="tempo" />
|
|
|
|
|
</intent-filter>
|
2020-11-20 15:38:08 +01:00
|
|
|
</activity>
|
2023-08-17 14:07:56 +02:00
|
|
|
|
2021-12-29 10:19:33 +01:00
|
|
|
<service
|
|
|
|
|
android:name=".service.MediaService"
|
2023-08-19 11:57:05 +02:00
|
|
|
android:exported="true"
|
|
|
|
|
android:foregroundServiceType="mediaPlayback">
|
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" />
|
2023-12-21 09:47:39 +01:00
|
|
|
<action android:name="android.media.browse.MediaBrowserService"/>
|
|
|
|
|
<action android:name="android.media.action.MEDIA_PLAY_FROM_SEARCH"/>
|
2021-04-26 19:17:42 +02:00
|
|
|
</intent-filter>
|
|
|
|
|
</service>
|
2023-08-17 14:07:56 +02:00
|
|
|
|
2023-08-19 11:57:05 +02:00
|
|
|
<service
|
|
|
|
|
android:name=".service.DownloaderService"
|
|
|
|
|
android:exported="true"
|
|
|
|
|
android:foregroundServiceType="dataSync">
|
2021-12-31 21:36:50 +01:00
|
|
|
<intent-filter>
|
2023-08-19 11:57:05 +02:00
|
|
|
<action android:name="androidx.media3.exoplayer.downloadService.action.RESTART" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2021-12-31 21:36:50 +01:00
|
|
|
</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>
|
2025-09-16 18:00:51 +02:00
|
|
|
|
|
|
|
|
<receiver
|
|
|
|
|
android:name=".widget.WidgetProvider4x1"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:label="@string/widget_label">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
|
|
|
|
|
</intent-filter>
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.appwidget.provider"
|
|
|
|
|
android:resource="@xml/widget_info"/>
|
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-11-20 15:38:08 +01:00
|
|
|
</application>
|
2025-09-16 18:00:51 +02:00
|
|
|
</manifest>
|