blob: ca5b573759c4818cc4f7a9c6b889d760a12ca86d [file] [log] [blame]
sm0a9f4cfd74d62010-03-18 09:32:06 +00001<?xml version="1.0" encoding="utf-8"?>
Keun young Park6cb78e52012-01-09 12:41:51 -08002<!-- Copyright (C) 2012 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
sm0a9f4cfd74d62010-03-18 09:32:06 +000016<manifest xmlns:android="http://schemas.android.com/apk/res/android"
sm0a9f4@gmail.com2b1168a2011-01-16 07:13:43 +000017 package="com.replica.replicaisland"
18 android:versionName="1.4"
Keun young Park6cb78e52012-01-09 12:41:51 -080019 android:versionCode="14" >
20
21 <uses-permission android:name="android.permission.VIBRATE"/>
22 <uses-permission xmlns:android="http://schemas.android.com/apk/res/android"
23 android:name="android.permission.INTERNET"/>
24
25 <!-- Actually, this game works fine on small screens, but the only one out
26 right now has no 3D acceleration, so it's slow and unplayable. -->
27 <supports-screens android:largeScreens="true"
28 android:smallScreens="false"
29 android:anyDensity="true"
30 android:normalScreens="true"/>
sm0a9f4cfd74d62010-03-18 09:32:06 +000031 <application android:icon="@drawable/icon"
32 android:label="@string/app_name"
sm0a9f4@gmail.com2b1168a2011-01-16 07:13:43 +000033 android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
sm0a9f4cfd74d62010-03-18 09:32:06 +000034 <activity android:name=".MainMenuActivity"
35 android:label="@string/app_name"
36 android:screenOrientation="landscape"
37 android:configChanges="keyboardHidden|orientation" >
sm0a9f4cfd74d62010-03-18 09:32:06 +000038 </activity>
39
40 <activity android:name="AndouKun" android:label="@string/app_name"
41 android:screenOrientation="landscape"
42 android:configChanges="keyboardHidden|orientation"
Keun young Park6cb78e52012-01-09 12:41:51 -080043 android:launchMode="singleTask">
44 <intent-filter>
45 <action android:name="android.intent.action.MAIN" />
46 <category android:name="android.intent.category.LAUNCHER" />
47 </intent-filter>
48 </activity>
sm0a9f4cfd74d62010-03-18 09:32:06 +000049
50 <activity android:name="LevelSelectActivity"
51 android:screenOrientation="landscape"
52 android:configChanges="keyboardHidden|orientation" />
53
54 <activity android:theme="@style/Theme.ConversationDialog"
55 android:screenOrientation="landscape"
56 android:configChanges="keyboardHidden|orientation"
57 android:name="ConversationDialogActivity"/>
58
59 <activity android:name="DiaryActivity"
60 android:screenOrientation="landscape"
61 android:configChanges="keyboardHidden|orientation"/>
62
63
64 <activity android:name="SetPreferencesActivity"
65 android:screenOrientation="landscape"
66 android:configChanges="keyboardHidden|orientation" />
67
68 <activity android:name="AnimationPlayerActivity"
69 android:screenOrientation="landscape"
70 android:configChanges="keyboardHidden|orientation" />
sm0a9f4@gmail.com2b1168a2011-01-16 07:13:43 +000071
72 <activity android:name="ExtrasMenuActivity"
73 android:screenOrientation="landscape"
74 android:configChanges="keyboardHidden|orientation" />
75
76 <activity android:name="DifficultyMenuActivity"
77 android:screenOrientation="landscape"
78 android:configChanges="keyboardHidden|orientation" />
79
80 <activity android:name="GameOverActivity"
81 android:screenOrientation="landscape"
82 android:configChanges="keyboardHidden|orientation"/>
83
sm0a9f4cfd74d62010-03-18 09:32:06 +000084 </application>
Keun young Park6cb78e52012-01-09 12:41:51 -080085
sm0a9f4cfd74d62010-03-18 09:32:06 +000086</manifest>
87