AndroidManifest.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.uidef.edit"
  4. android:versionCode="19"
  5. android:versionName="0.1">
  6. <uses-sdk android:minSdkVersion="26" android:targetSdkVersion="34" />
  7. <uses-feature android:glEsVersion="0x00030000" android:required="true" />
  8. <application
  9. android:label="UIDefEdit"
  10. android:icon="@mipmap/ic_launcher"
  11. android:hasCode="true"
  12. android:extractNativeLibs="true"
  13. android:debuggable="true"
  14. android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
  15. <activity
  16. android:name="com.uidef.edit.DebugActivity"
  17. android:configChanges="orientation|keyboardHidden|screenSize"
  18. android:screenOrientation="portrait"
  19. android:exported="true">
  20. <meta-data
  21. android:name="android.app.lib_name"
  22. android:value="uidef-tool" />
  23. <intent-filter>
  24. <action android:name="android.intent.action.MAIN" />
  25. <category android:name="android.intent.category.LAUNCHER" />
  26. </intent-filter>
  27. </activity>
  28. </application>
  29. </manifest>