mirror of
https://github.com/antebudimir/tempus.git
synced 2025-12-31 17:43:32 +00:00
34 lines
No EOL
1.4 KiB
XML
34 lines
No EOL
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.cappielloantonio.play">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
|
|
|
|
<application
|
|
android:name="App"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme"
|
|
android:usesCleartextTraffic="true"
|
|
android:allowBackup="false">
|
|
<activity
|
|
android:name=".ui.activity.MainActivity"
|
|
android:windowSoftInputMode="adjustPan|adjustResize"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<service android:name=".service.MusicService" android:enabled="true"/>
|
|
<service android:name=".service.DownloaderService" 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>
|
|
</application>
|
|
</manifest> |