| 12345678910111213141516171819202122232425262728293031323334 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.yingyangfly.game">
- <application>
- <activity
- android:name="com.yingyangfly.game.loading.GameLoadingActivity"
- android:configChanges="keyboardHidden|orientation|screenSize"
- android:screenOrientation="landscape"
- android:windowSoftInputMode="adjustResize|adjustPan" />
- <activity
- android:name="com.yingyangfly.game.introduction.GameIntroductionActivity"
- android:configChanges="keyboardHidden|orientation|screenSize"
- android:launchMode="singleInstance"
- android:screenOrientation="landscape"
- android:windowSoftInputMode="adjustResize|adjustPan" />
- <activity
- android:name="com.yingyangfly.game.play.PlayGameActivity"
- android:configChanges="keyboardHidden|orientation|screenSize"
- android:launchMode="singleInstance"
- android:screenOrientation="landscape"
- android:windowSoftInputMode="adjustResize|adjustPan" />
- <activity
- android:name="com.yingyangfly.game.settlement.GameSettlementActivity"
- android:configChanges="keyboardHidden|orientation|screenSize"
- android:screenOrientation="landscape"
- android:windowSoftInputMode="adjustResize|adjustPan" />
- </application>
- </manifest>
|