diff options
| author | Paul Buetow <paul@buetow.org> | 2024-01-25 20:17:18 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2024-01-25 20:17:18 +0200 |
| commit | 7756b77bf0737d91bd1d156ef9a12b6fdf740fa6 (patch) | |
| tree | faa55c106dcd8ea853e9950c319cad84ac840d6a | |
| parent | ad98bb6a54bf26fc859db8eb1dcefb97c0a604e6 (diff) | |
fix manifest
| -rw-r--r-- | AndroidManifest.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 2fd280f..7e79af8 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -6,4 +6,16 @@ <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" /> + <application + android:allowBackup="true" + android:label="quicklogger"> + + <activity android:name="org.golang.app.GoNativeActivity"> + <meta-data android:name="android.app.lib_name" android:value="npc" /> + <intent-filter> + <action android:name="android.intent.action.MAIN"/> + <category android:name="android.intent.category.LAUNCHER"/> + </intent-filter> + </activity> + </application> </manifest> |
