handle text from intent

This commit is contained in:
Gergely Hegedus 2023-11-19 00:46:02 +02:00
parent 997fcb862b
commit 389562ffbc
6 changed files with 61 additions and 27 deletions

View file

@ -23,6 +23,14 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/*" />
<data android:mimeType="message/*" />
</intent-filter>
</activity>
</application>