AndroidManifest.xml (899B)
1 <?xml version="1.0" encoding="utf-8"?> 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 package="imgui.example.android"> 4 5 <application 6 android:label="ImGuiExample" 7 android:allowBackup="false" 8 android:fullBackupContent="false" 9 android:hasCode="true"> 10 11 <activity 12 android:name="imgui.example.android.MainActivity" 13 android:theme="@android:style/Theme.NoTitleBar.Fullscreen" 14 android:configChanges="orientation|keyboardHidden|screenSize"> 15 <meta-data android:name="android.app.lib_name" 16 android:value="ImGuiExample" /> 17 18 <intent-filter> 19 <action android:name="android.intent.action.MAIN" /> 20 <category android:name="android.intent.category.LAUNCHER" /> 21 </intent-filter> 22 </activity> 23 </application> 24 </manifest>