summaryrefslogtreecommitdiff
path: root/external/imgui/examples/example_android_opengl3/android/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
author0x221E <0x221E@0xinfinity.dev>2026-04-12 16:59:40 +0200
committer0x221E <0x221E@0xinfinity.dev>2026-04-12 16:59:40 +0200
commita66c7433c2c11b8b6c99142277ed4e16b1a2a465 (patch)
treee54bcfb59c303acf6118fd11f06d5c0bd5f24e5d /external/imgui/examples/example_android_opengl3/android/app/src/main/AndroidManifest.xml
initial commitHEADmaster
Diffstat (limited to 'external/imgui/examples/example_android_opengl3/android/app/src/main/AndroidManifest.xml')
-rw-r--r--external/imgui/examples/example_android_opengl3/android/app/src/main/AndroidManifest.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/external/imgui/examples/example_android_opengl3/android/app/src/main/AndroidManifest.xml b/external/imgui/examples/example_android_opengl3/android/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..6410b5a
--- /dev/null
+++ b/external/imgui/examples/example_android_opengl3/android/app/src/main/AndroidManifest.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools">
+
+ <application
+ android:label="ImGuiExample"
+ android:allowBackup="false"
+ android:fullBackupContent="false"
+ android:hasCode="true">
+
+ <activity
+ android:name="imgui.example.android.MainActivity"
+ android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
+ android:configChanges="orientation|keyboardHidden|screenSize"
+ android:exported="true">
+ <meta-data android:name="android.app.lib_name"
+ android:value="ImGuiExample" />
+
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+</manifest>