Skip to content

Commit

Permalink
fix: android sharing csv file
Browse files Browse the repository at this point in the history
  • Loading branch information
achorein committed Sep 22, 2024
1 parent 1c41e64 commit 951ef50
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class ExpoShareIntentModule : Module() {

fun handleShareIntent(intent: Intent) {
if (intent.type == null) return
if (intent.type!!.startsWith("text")) {
if (intent.type!!.startsWith("text/plain")) {
// text / urls
if (intent.action == Intent.ACTION_SEND) {
notifyShareIntent(mapOf(
Expand Down

0 comments on commit 951ef50

Please sign in to comment.