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"
|
2018-08-17 23:02:13 +02:00
|
|
|
android:versionCode="21"
|
|
|
|
android:versionName="0.20.22">
|
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
|
|
|
|
|
|
|
<application 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-09-16 12:00:59 +02:00
|
|
|
<service android:name=".Main" />
|
2014-02-18 08:33:06 +01:00
|
|
|
</application>
|
|
|
|
|
2014-03-01 07:58:01 +01:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
2014-02-18 08:33:06 +01:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK"/>
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
</manifest>
|