-
Notifications
You must be signed in to change notification settings - Fork 10
/
AndroidManifest.xml
30 lines (26 loc) · 1.1 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.falconware.prestissimo"
android:versionCode="11"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.INTERNET" /> <!-- For Streaming -->
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> <!-- Necessary to open the media files in KitKat -->
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="Prestissimo" >
<service
android:exported="true"
android:name=".SoundService"
tools:ignore="ExportedService" >
<intent-filter>
<action android:name="com.aocate.intent.PLAY_AUDIO_ADJUST_SPEED_0_8" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</service>
</application>
</manifest>