handle share intents when app first launches (#9410)

This commit is contained in:
Samuel Newman
2025-11-20 17:52:33 +02:00
committed by GitHub
parent 9823bc98e9
commit f5a5eee32c
2 changed files with 6 additions and 1 deletions
@@ -23,6 +23,10 @@ class ExpoReceiveAndroidIntentsModule : Module() {
ModuleDefinition {
Name("ExpoReceiveAndroidIntents")
OnCreate {
handleIntent(appContext.currentActivity?.intent)
}
OnNewIntent {
handleIntent(it)
}