2019-08-19 16:50:33 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2023-11-04 08:48:13 +01:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
2019-08-19 16:50:33 +02:00
|
|
|
|
2021-07-23 14:10:13 +02:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2022-12-09 09:49:41 +01:00
|
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
2019-08-19 16:50:33 +02:00
|
|
|
|
2021-07-23 14:10:13 +02:00
|
|
|
<permission android:name="android.permission.MEDIA_CONTENT_CONTROL" />
|
2019-08-19 16:50:33 +02:00
|
|
|
|
2021-07-23 14:10:13 +02:00
|
|
|
<application
|
|
|
|
android:name="audio.funkwhale.ffa.FFA"
|
|
|
|
android:allowBackup="false"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:networkSecurityConfig="@xml/security"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
android:usesCleartextTraffic="true">
|
2019-08-19 16:50:33 +02:00
|
|
|
|
2021-07-23 14:10:13 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.SplashActivity"
|
|
|
|
android:launchMode="singleInstance"
|
2021-09-10 09:09:01 +02:00
|
|
|
android:noHistory="true"
|
2023-09-28 17:16:34 +02:00
|
|
|
android:screenOrientation="portrait"
|
2022-12-06 09:31:09 +01:00
|
|
|
android:exported="true">
|
2020-07-10 17:23:02 +02:00
|
|
|
|
2021-07-23 14:10:13 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2023-09-28 17:16:34 +02:00
|
|
|
|
2021-07-23 14:10:13 +02:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2020-07-10 17:23:02 +02:00
|
|
|
|
2021-07-23 14:10:13 +02:00
|
|
|
</activity>
|
2019-08-19 16:50:33 +02:00
|
|
|
|
2021-07-23 14:10:13 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.LoginActivity"
|
|
|
|
android:configChanges="screenSize|orientation"
|
2021-09-10 09:09:01 +02:00
|
|
|
android:launchMode="singleInstance"
|
|
|
|
android:screenOrientation="portrait" />
|
2020-07-10 17:18:29 +02:00
|
|
|
|
2023-09-28 17:16:34 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.MainActivity"
|
|
|
|
android:screenOrientation="portrait" />
|
2020-07-10 17:18:29 +02:00
|
|
|
|
2021-09-10 09:09:01 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.DownloadsActivity"
|
|
|
|
android:screenOrientation="portrait" />
|
2020-07-10 17:18:29 +02:00
|
|
|
|
2021-09-10 09:09:01 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.SettingsActivity"
|
|
|
|
android:screenOrientation="portrait" />
|
2020-07-10 17:18:29 +02:00
|
|
|
|
2021-09-10 09:09:01 +02:00
|
|
|
<activity
|
|
|
|
android:name=".activities.LicencesActivity"
|
|
|
|
android:screenOrientation="portrait" />
|
2019-08-19 16:50:33 +02:00
|
|
|
|
2023-11-04 08:48:13 +01:00
|
|
|
<activity
|
|
|
|
android:name="net.openid.appauth.AuthorizationManagementActivity"
|
|
|
|
android:launchMode="@integer/launch_mode_for_app_auth"
|
|
|
|
tools:replace="android:launchMode" />
|
|
|
|
|
2021-07-23 14:10:13 +02:00
|
|
|
<service
|
|
|
|
android:name=".playback.PlayerService"
|
2022-12-06 09:31:09 +01:00
|
|
|
android:foregroundServiceType="mediaPlayback"
|
|
|
|
android:exported="false">
|
2020-07-12 18:28:50 +02:00
|
|
|
|
2021-07-23 14:10:13 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MEDIA_BUTTON" />
|
|
|
|
</intent-filter>
|
2020-07-12 18:28:50 +02:00
|
|
|
|
2021-07-23 14:10:13 +02:00
|
|
|
</service>
|
2019-08-19 16:50:33 +02:00
|
|
|
|
2021-07-23 14:10:13 +02:00
|
|
|
<service
|
|
|
|
android:name=".playback.PinService"
|
|
|
|
android:exported="false">
|
2020-07-12 18:28:50 +02:00
|
|
|
|
2021-07-23 14:10:13 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.android.exoplayer.downloadService.action.RESTART" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
2020-07-12 18:28:50 +02:00
|
|
|
|
2021-07-23 14:10:13 +02:00
|
|
|
</service>
|
2020-06-10 16:25:20 +02:00
|
|
|
|
2022-12-06 09:31:09 +01:00
|
|
|
<receiver android:name="androidx.media.session.MediaButtonReceiver"
|
|
|
|
android:exported="false">
|
2021-07-23 14:10:13 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MEDIA_BUTTON" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2019-08-19 16:50:33 +02:00
|
|
|
|
2023-04-05 12:52:09 +02:00
|
|
|
<meta-data android:name="io.sentry.dsn" android:value="https://4e377f47d01242baae2d9d8bd689c3ef@am.funkwhale.audio/4" />
|
2021-07-23 14:10:13 +02:00
|
|
|
</application>
|
2019-08-19 16:50:33 +02:00
|
|
|
|
2021-06-26 13:48:43 +02:00
|
|
|
</manifest>
|