blob: 0e6115ef019ff43de48a24d30c6a6c1426e19810 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<?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>
|