Files
vercel-labs--zero-native/examples/android/app/src/main/AndroidManifest.xml
T
2026-07-13 12:29:49 +08:00

17 lines
656 B
XML

<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:label="Android Example"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
android:exported="true"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>