feat: add text/plain intent to send message (#1389)

This commit is contained in:
Espié.R 2024-11-30 18:12:08 +01:00 committed by GitHub
parent 716a3f535f
commit d76eac258b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 228 additions and 0 deletions

View file

@ -154,6 +154,12 @@
<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/plain" />
</intent-filter>
<intent-filter android:autoVerify="true">
<!-- The QR codes to share channel settings are shared as meshtastic URLS
@ -222,6 +228,7 @@
<action android:name="com.atakmap.app.component" />
</intent-filter>
</activity>
</application>
</manifest>