You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
1.3 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Changes made to Package Name should also be reflected in the Debugging - Package Name property, in the Property Pages -->
  3. <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.$(ApplicationName)" android:versionCode="1" android:versionName="1.0">
  4. <!-- This is the platform API where NativeActivity was introduced. -->
  5. <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="29"/>
  6. <!-- This .apk has no Java code itself, so set hasCode to false. -->
  7. <application android:label="@string/app_name" android:hasCode="false">
  8. <!-- Our activity is the built-in NativeActivity framework class.
  9. This will take care of integrating with our NDK code. -->
  10. <activity android:name="android.app.NativeActivity" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" android:configChanges="orientation|keyboardHidden|screenSize" android:screenOrientation="landscape">
  11. <!-- Tell NativeActivity the name of our .so -->
  12. <meta-data android:name="android.app.lib_name" android:value="main"/>
  13. <intent-filter>
  14. <action android:name="android.intent.action.MAIN"/>
  15. <category android:name="android.intent.category.LAUNCHER"/>
  16. </intent-filter>
  17. </activity>
  18. </application>
  19. </manifest>