AndroidManifest.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.yingyangfly.game">
  4. <application>
  5. <activity
  6. android:name="com.yingyangfly.game.loading.GameLoadingActivity"
  7. android:configChanges="keyboardHidden|orientation|screenSize"
  8. android:screenOrientation="landscape"
  9. android:windowSoftInputMode="adjustResize|adjustPan" />
  10. <activity
  11. android:name="com.yingyangfly.game.introduction.GameIntroductionActivity"
  12. android:configChanges="keyboardHidden|orientation|screenSize"
  13. android:launchMode="singleInstance"
  14. android:screenOrientation="landscape"
  15. android:windowSoftInputMode="adjustResize|adjustPan" />
  16. <activity
  17. android:name="com.yingyangfly.game.play.PlayGameActivity"
  18. android:configChanges="keyboardHidden|orientation|screenSize"
  19. android:launchMode="singleInstance"
  20. android:screenOrientation="landscape"
  21. android:windowSoftInputMode="adjustResize|adjustPan" />
  22. <activity
  23. android:name="com.yingyangfly.game.settlement.GameSettlementActivity"
  24. android:configChanges="keyboardHidden|orientation|screenSize"
  25. android:screenOrientation="landscape"
  26. android:windowSoftInputMode="adjustResize|adjustPan" />
  27. </application>
  28. </manifest>