clean: AndroidManifest cleaning

This commit is contained in:
antonio 2023-08-19 11:57:05 +02:00
parent 6120ab66ba
commit 295795edc9

View file

@ -12,23 +12,27 @@
<application <application
android:name="App" android:name="App"
android:allowBackup="false"
android:icon="@mipmap/ic_launcher" android:icon="@mipmap/ic_launcher"
android:label="@string/app_name" android:label="@string/app_name"
android:localeConfig="@xml/locale_config"
android:roundIcon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_launcher"
android:supportsRtl="true" android:supportsRtl="true"
android:theme="@style/AppTheme.SplashScreen" android:theme="@style/AppTheme.SplashScreen"
android:usesCleartextTraffic="true" android:usesCleartextTraffic="true">
android:allowBackup="false"
android:localeConfig="@xml/locale_config">
<meta-data <meta-data
android:name="com.google.android.gms.cast.framework.OPTIONS_PROVIDER_CLASS_NAME" android:name="com.google.android.gms.cast.framework.OPTIONS_PROVIDER_CLASS_NAME"
android:value="androidx.media3.cast.DefaultCastOptionsProvider" /> android:value="androidx.media3.cast.DefaultCastOptionsProvider" />
<meta-data
android:name="androidx.car.app.TintableAttributionIcon"
android:resource="@drawable/ic_graphic_eq" />
<activity <activity
android:name=".ui.activity.MainActivity" android:name=".ui.activity.MainActivity"
android:windowSoftInputMode="adjustPan|adjustResize" android:exported="true"
android:exported="true"> android:windowSoftInputMode="adjustPan|adjustResize">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" /> <category android:name="android.intent.category.LAUNCHER" />
@ -37,17 +41,18 @@
<service <service
android:name=".service.MediaService" android:name=".service.MediaService"
android:foregroundServiceType="mediaPlayback" android:exported="true"
android:exported="true"> android:foregroundServiceType="mediaPlayback">
<intent-filter> <intent-filter>
<action android:name="androidx.media3.session.MediaLibraryService" /> <action android:name="androidx.media3.session.MediaLibraryService" />
<action android:name="androidx.media3.session.MediaBrowserService" /> <action android:name="androidx.media3.session.MediaBrowserService" />
</intent-filter> </intent-filter>
</service> </service>
<service android:name=".service.DownloaderService" <service
android:foregroundServiceType="dataSync" android:name=".service.DownloaderService"
android:exported="true"> android:exported="true"
android:foregroundServiceType="dataSync">
<intent-filter> <intent-filter>
<action android:name="androidx.media3.exoplayer.downloadService.action.RESTART" /> <action android:name="androidx.media3.exoplayer.downloadService.action.RESTART" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />