2020-11-20 15:38:08 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
package="com.cappielloantonio.play">
|
|
|
|
|
|
2020-12-08 20:30:21 +01:00
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
|
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" tools:ignore="ScopedStorage" />
|
2020-11-20 15:38:08 +01:00
|
|
|
|
|
|
|
|
<application
|
|
|
|
|
android:allowBackup="true"
|
|
|
|
|
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">
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.activities.MainActivity"
|
|
|
|
|
android:windowSoftInputMode="adjustPan|adjustResize">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2020-12-09 19:31:35 +01:00
|
|
|
<service android:name=".service.MusicService" android:enabled="true"/>
|
2020-11-20 15:38:08 +01:00
|
|
|
</application>
|
|
|
|
|
</manifest>
|