| 12345678910111213141516171819202122232425262728293031323334 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.uidef.edit"
- android:versionCode="19"
- android:versionName="0.1">
- <uses-sdk android:minSdkVersion="26" android:targetSdkVersion="34" />
- <uses-feature android:glEsVersion="0x00030000" android:required="true" />
- <application
- android:label="UIDefEdit"
- android:icon="@mipmap/ic_launcher"
- android:hasCode="true"
- android:extractNativeLibs="true"
- android:debuggable="true"
- android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
- <activity
- android:name="com.uidef.edit.DebugActivity"
- android:configChanges="orientation|keyboardHidden|screenSize"
- android:screenOrientation="portrait"
- android:exported="true">
- <meta-data
- android:name="android.app.lib_name"
- android:value="uidef-tool" />
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- </application>
- </manifest>
|