forked from chrisboyle/sgtpuzzles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
57 lines (57 loc) · 3.14 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="name.boyle.chris.sgtpuzzles"
android:installLocation="auto"
android:versionCode="70" android:versionName="9411.2">
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="14" />
<!-- You must be able to navigate and enter numbers, so: { 5-way and keyboard } or touchscreen -->
<uses-configuration android:reqFiveWayNav="true" android:reqKeyboardType="qwerty" />
<uses-configuration android:reqFiveWayNav="true" android:reqKeyboardType="twelvekey" />
<uses-configuration android:reqTouchScreen="finger" />
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true" />
<!-- For saved games -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application android:icon="@drawable/icon" android:label="@string/app_name"
android:backupAgent=".BackupAgent">
<activity android:name=".SGTPuzzles" android:windowSoftInputMode="adjustPan"
android:label="@string/app_name" android:stateNotNeeded="true"
android:launchMode="singleTask"
android:theme="@android:style/Theme.Light"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="sgtpuzzles" />
</intent-filter>
</activity>
<activity android:name=".GameChooser" android:launchMode="singleTask"
android:theme="@android:style/Theme.Light"
android:label="@string/chooser_title" android:stateNotNeeded="true"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.PICK" />
<data android:scheme="sgtpuzzles" />
</intent-filter>
</activity>
<activity android:name=".CrashHandler" android:process=":CrashHandler"
android:stateNotNeeded="true" android:exported="false"
android:configChanges="keyboard|keyboardHidden|orientation">
</activity>
<activity android:name=".PrefsActivity"
android:label="@string/Settings" android:launchMode="singleTask"
android:configChanges="keyboard|keyboardHidden|orientation">
</activity>
<activity android:name=".RestartActivity" android:stateNotNeeded="true" android:exported="false" />
<meta-data android:name="com.google.android.backup.api_key" android:value="@string/backup_api_key" />
</application>
</manifest>