summaryrefslogtreecommitdiff
path: root/android/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'android/AndroidManifest.xml')
-rw-r--r--android/AndroidManifest.xml36
1 files changed, 0 insertions, 36 deletions
diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml
deleted file mode 100644
index 0e6115e..0000000
--- a/android/AndroidManifest.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- package="org.buetow.quicklogger">
-
- <application>
- <!-- Also accept SEND on the main Go activity (some launchers prefer direct targets) -->
- <activity
- android:name="org.golang.app.GoNativeActivity"
- android:exported="true"
- tools:node="merge">
- <intent-filter>
- <action android:name="android.intent.action.SEND" />
- <category android:name="android.intent.category.DEFAULT" />
- <data android:mimeType="text/plain" />
- <data android:mimeType="text/*" />
- </intent-filter>
- </activity>
-
- <!-- Share receiver activity: writes text to cache and launches main app -->
- <activity
- android:name=".ShareActivity"
- android:exported="true"
- android:excludeFromRecents="true"
- android:launchMode="singleTask"
- android:taskAffinity=""
- android:theme="@android:style/Theme.Translucent.NoTitleBar">
- <intent-filter>
- <action android:name="android.intent.action.SEND" />
- <category android:name="android.intent.category.DEFAULT" />
- <data android:mimeType="text/plain" />
- <data android:mimeType="text/*" />
- </intent-filter>
- </activity>
- </application>
-</manifest>