AndroidManifest.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:versionCode="1"
  4. android:versionName="1.0"
  5. package="monogame.samples.input">
  6. <uses-sdk android:minSdkVersion="28" android:targetSdkVersion="34" />
  7. <uses-permission android:name="android.permission.INTERNET" />
  8. <uses-permission android:name="android.permission.SET_ORIENTATION" />
  9. <application
  10. android:label="MonoGame Input Sample"
  11. android:debuggable="true"
  12. android:icon="@drawable/icon"
  13. android:theme="@style/Theme.Splash">
  14. <activity
  15. android:name="monogame.samples.input.Activity1"
  16. android:label="MonoGame Input Sample"
  17. android:exported="true"
  18. android:icon="@drawable/icon"
  19. android:theme="@style/Theme.Splash"
  20. android:configChanges="orientation|keyboard|keyboardHidden|screenSize"
  21. android:screenOrientation="sensor">
  22. <intent-filter>
  23. <action android:name="android.intent.action.MAIN" />
  24. <category android:name="android.intent.category.LAUNCHER" />
  25. </intent-filter>
  26. </activity>
  27. </application>
  28. </manifest>