Files
2026-07-13 12:29:49 +08:00

24 lines
1.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- No-Java canvas shim: android.app.NativeActivity loads
lib__LIB_NAME__.so (android.app.lib_name) and hasCode stays false, the
Android twin of the iOS bundle-without-xcodeproj. debuggable=true so
`adb shell run-as` can read automation snapshots from the app's files
dir. -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="__PACKAGE__">
<application
android:label="__APP_NAME__"
android:debuggable="true"
android:hasCode="false">
<activity android:name="android.app.NativeActivity"
android:exported="true"
android:configChanges="orientation|screenSize|screenLayout|keyboard|keyboardHidden|density|uiMode">
<meta-data android:name="android.app.lib_name" android:value="__LIB_NAME__" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>