2019-08-19 16:50:33 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-10-23 20:21:18 +02:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-08-19 16:50:33 +02:00
|
|
|
package="com.github.apognu.otter">
|
|
|
|
|
2019-10-23 20:21:18 +02:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2019-08-19 16:50:33 +02:00
|
|
|
|
2019-10-23 20:21:18 +02:00
|
|
|
<permission android:name="android.permission.MEDIA_CONTENT_CONTROL" />
|
2019-08-19 16:50:33 +02:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:name="com.github.apognu.otter.Otter"
|
|
|
|
android:allowBackup="false"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
2019-10-23 20:21:18 +02:00
|
|
|
android:supportsRtl="true"
|
2020-06-20 16:52:41 +02:00
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
android:usesCleartextTraffic="true">
|
2019-08-19 16:50:33 +02:00
|
|
|
|
|
|
|
<!-- <meta-data
|
|
|
|
android:name="com.google.android.gms.cast.framework.OPTIONS_PROVIDER_CLASS_NAME"
|
|
|
|
android:value="com.google.android.exoplayer2.ext.cast.DefaultCastOptionsProvider"/> -->
|
|
|
|
|
2019-10-23 20:21:18 +02:00
|
|
|
<activity
|
|
|
|
android:name="com.github.apognu.otter.activities.SplashActivity"
|
|
|
|
android:launchMode="singleInstance"
|
|
|
|
android:noHistory="true">
|
2019-08-19 16:50:33 +02:00
|
|
|
<intent-filter>
|
2019-10-23 20:21:18 +02:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2019-08-19 16:50:33 +02:00
|
|
|
|
2019-10-23 20:21:18 +02:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2019-08-19 16:50:33 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2019-10-23 20:21:18 +02:00
|
|
|
<activity
|
|
|
|
android:name="com.github.apognu.otter.activities.LoginActivity"
|
2019-11-05 21:23:29 +01:00
|
|
|
android:configChanges="screenSize|orientation"
|
2019-10-23 20:21:18 +02:00
|
|
|
android:launchMode="singleInstance" />
|
|
|
|
<activity android:name="com.github.apognu.otter.activities.MainActivity" />
|
|
|
|
<activity
|
|
|
|
android:name="com.github.apognu.otter.activities.SearchActivity"
|
|
|
|
android:launchMode="singleTop" />
|
2020-06-13 16:09:48 +02:00
|
|
|
<activity android:name="com.github.apognu.otter.activities.DownloadsActivity" />
|
2019-10-23 20:21:18 +02:00
|
|
|
<activity android:name="com.github.apognu.otter.activities.SettingsActivity" />
|
|
|
|
<activity android:name="com.github.apognu.otter.activities.LicencesActivity" />
|
2019-08-19 16:50:33 +02:00
|
|
|
|
2019-10-23 20:21:18 +02:00
|
|
|
<service android:name="com.github.apognu.otter.playback.PlayerService" />
|
2019-08-19 16:50:33 +02:00
|
|
|
|
2020-06-10 16:25:20 +02:00
|
|
|
<service
|
|
|
|
android:name=".playback.PinService"
|
|
|
|
android:exported="false">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.android.exoplayer.downloadService.action.RESTART" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
2019-10-23 20:21:18 +02:00
|
|
|
<receiver android:name="com.github.apognu.otter.playback.MediaControlActionReceiver" />
|
2019-08-19 16:50:33 +02:00
|
|
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|