-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
58 lines (58 loc) · 3.49 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="utf-8"?>
<manifest android:versionCode="122" android:versionName="0.11.39" android:installLocation="auto" package="com.emulator.fpse"
xmlns:android="http://schemas.android.com/apk/res/android">
<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="11" />
<uses-permission android:name="com.android.vending.CHECK_LICENSE" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
<uses-feature android:name="android.hardware.bluetooth" android:required="false" />
<uses-feature android:name="android.hardware.sensor.accelerometer" android:required="false" />
<application android:theme="@android:style/Theme.Holo" android:label="@string/app_name" android:icon="@drawable/app_icon" android:debuggable="true" android:largeHeap="true">
<activity android:label="@string/app_name" android:name=".Main" android:configChanges="locale|mcc|mnc|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|fontScale">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:label="@string/app_name" android:name=".MainGL" android:configChanges="locale|mcc|mnc|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|fontScale">
<intent-filter>
<category android:name="android.intent.category.VIEW" />
</intent-filter>
</activity>
<activity android:label="@string/app_name" android:name=".Loader" android:configChanges="locale|mcc|mnc|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|fontScale">
<intent-filter>
<category android:name="android.intent.category.VIEW" />
</intent-filter>
</activity>
<activity android:label="@string/app_name" android:name=".Prefs">
<intent-filter>
<category android:name="android.intent.category.VIEW" />
</intent-filter>
</activity>
<activity android:label="@string/app_name" android:name=".RootMenu">
<intent-filter>
<category android:name="android.intent.category.VIEW" />
</intent-filter>
</activity>
<activity android:label="@string/app_name" android:name=".Greetings">
<intent-filter>
<category android:name="android.intent.category.VIEW" />
</intent-filter>
</activity>
<activity android:label="@string/app_name" android:name=".Info">
<intent-filter>
<category android:name="android.intent.category.VIEW" />
</intent-filter>
</activity>
<activity android:label="@string/app_name" android:name=".DeviceListActivity">
<intent-filter>
<category android:name="android.intent.category.VIEW" />
</intent-filter>
</activity>
<meta-data android:name="xperiaplayoptimized_content" android:resource="@drawable/app_icon" />
</application>
</manifest>