AndroidManifest.xml 1.0 KB

123456789101112131415161718
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.companyname.asteroidbeltassault">
  3. <uses-sdk android:minSdkVersion="28" android:targetSdkVersion="34" />
  4. <application android:allowBackup="true" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme">
  5. <activity android:name="microsoft.xna.framework.AndroidGameActivity"
  6. android:label="@string/app_name"
  7. android:launchMode="singleInstance"
  8. android:screenOrientation="sensorLandscape"
  9. android:configChanges="orientation|keyboardHidden|keyboard|screenSize"
  10. android:exported="true">
  11. <intent-filter>
  12. <action android:name="android.intent.action.MAIN" />
  13. <category android:name="android.intent.category.LAUNCHER" />
  14. </intent-filter>
  15. </activity>
  16. </application>
  17. </manifest>