Skip to content

Commit

Permalink
fix: android sharing csv file (#111)
Browse files Browse the repository at this point in the history
* fix: android sharing csv file

* update example dependancies
  • Loading branch information
achorein committed Sep 23, 2024
1 parent 7cedbb7 commit 53bb705
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,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 53bb705

Please sign in to comment.