summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-01-24 01:02:11 +0200
committerPaul Buetow <paul@buetow.org>2024-01-24 01:02:11 +0200
commitbc95b1b03204ecade0c4ceac0a3412df26384334 (patch)
treeef0a27f3f388a05397d649e8b2c38fac95ac7d09 /AndroidManifest.xml
parentde2b79d357d7434389116f9849bdabdb7f435e89 (diff)
can write to Notes/Vault
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
new file mode 100644
index 0000000..7e79af8
--- /dev/null
+++ b/AndroidManifest.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="org.buetow.quicklogger">
+
+ <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
+ <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>