blob: 51edc1b3c012335d514f9cd2d280bb3643673a16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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>
|