summaryrefslogblamecommitdiffstats
path: root/lib/imgui-1.90.7/examples/example_android_opengl3/android/app/src/main/AndroidManifest.xml
blob: a87b95b4f8f1f3241da9277d2a5252cf9eb4a366 (plain) (tree)























                                                                            
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

    <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="false">
            <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>