diff options
Diffstat (limited to 'android/AndroidManifest.xml')
| -rw-r--r-- | android/AndroidManifest.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml new file mode 100644 index 0000000..51edc1b --- /dev/null +++ b/android/AndroidManifest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="org.buetow.quicklogger"> + + <application> + <!-- Share receiver activity: writes text to cache and launches main app --> + <activity + android:name=".ShareActivity" + android:exported="true" + android:excludeFromRecents="true" + 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> + |
