2014-02-18 08:33:06 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="org.musicpd"
|
|
|
|
android:installLocation="auto"
|
2019-01-04 19:31:07 +01:00
|
|
|
android:versionCode="27"
|
|
|
|
android:versionName="0.21.5">
|
2014-02-18 08:33:06 +01:00
|
|
|
|
2018-08-18 20:44:18 +02:00
|
|
|
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="26"/>
|
2014-02-18 08:33:06 +01:00
|
|
|
|
2014-10-18 19:00:57 +02:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK"/>
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
2014-10-18 19:02:23 +02:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
2014-10-18 19:00:57 +02:00
|
|
|
|
|
|
|
<application android:allowBackup="true"
|
|
|
|
android:icon="@drawable/icon"
|
|
|
|
android:label="@string/app_name">
|
2014-09-16 12:00:59 +02:00
|
|
|
<activity android:name=".Settings"
|
|
|
|
android:label="@string/app_name">
|
2014-02-18 08:33:06 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2014-10-18 19:02:23 +02:00
|
|
|
<receiver android:name=".Receiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
<service android:name=".Main" android:process=":main"/>
|
2014-02-18 08:33:06 +01:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|