forked from alexbrault/LegendaryRandomiser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
47 lines (43 loc) · 2.48 KB
/
Copy pathAndroidManifest.xml
File metadata and controls
47 lines (43 loc) · 2.48 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
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.threedoubloons.legendaryrandomiser"
android:versionCode="17"
android:versionName="1.3.1" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="16" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="net.threedoubloons.legendaryrandomiser.OptionsSelectActivity"
android:label="@string/app_name" android:configChanges="keyboardHidden|orientation" android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.MULTIWINDOW_LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="net.threedoubloons.legendaryrandomiser.GameDetailsActivity"
android:label="@string/title_activity_game_details"
android:parentActivityName="net.threedoubloons.legendaryrandomiser.OptionsSelectActivity" android:configChanges="orientation|screenSize">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="net.threedoubloons.legendaryrandomiser.OptionsSelect" />
</activity>
<activity android:name="net.threedoubloons.legendaryrandomiser.SettingsActivity">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="net.threedoubloons.legendaryrandomiser.OptionsSelect" />
</activity>
<uses-library android:required="false" android:name="com.sec.android.app.multiwindow" />
<meta-data android:name="com.sec.android.support.multiwindow" android:value="true" />
<meta-data android:name="com.sec.android.multiwindow.DEFAULT_SIZE_W" android:resource="@dimen/app_defaultsize_w" />
<meta-data android:name="com.sec.android.multiwindow.DEFAULT_SIZE_H" android:resource="@dimen/app_defaultsize_h" />
<meta-data android:name="com.sec.android.multiwindow.MINIMUM_SIZE_W" android:resource="@dimen/app_minimumsize_w" />
<meta-data android:name="com.sec.android.multiwindow.MINIMUM_SIZE_H" android:resource="@dimen/app_minimumsize_h" />
</application>
</manifest>