-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
36 lines (31 loc) · 1.54 KB
/
AndroidManifest.xml
File metadata and controls
36 lines (31 loc) · 1.54 KB
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
31
32
33
34
35
36
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.touchmusicfree"
android:versionCode="3" android:versionName="1.2">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<service android:name="com.touchmusicfree.TMService" />
<activity android:name=".TouchMusic"
android:screenOrientation="sensor"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".Settings" android:label="@string/app_name">
</activity>
<receiver android:name="TouchMusic$HSChange">
<intent-filter>
<action android:name="android.bluetooth.intent.action.HEADSET_STATE_CHANGED" />
<action android:name="android.intent.action.HEADSET_PLUG" />
</intent-filter>
</receiver>
<!-- AdMob Pub ID -->
<meta-data android:value="a14ba55f5cab457" android:name="ADMOB_PUBLISHER_ID" />
</application>
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<!-- AdMob SDK permissions -->
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-sdk android:minSdkVersion="3" />
</manifest>