Make all referrer info sync (#4782)

This commit is contained in:
Hailey 2024-07-12 07:37:43 -07:00 committed by GitHub
parent f021c06468
commit 306f162639
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 26 additions and 28 deletions

View file

@ -23,7 +23,7 @@ class ExpoBlueskyReferrerModule : Module() {
activityReferrer = appContext.currentActivity?.referrer
}
AsyncFunction("getReferrerInfoAsync") {
Function("getReferrerInfo") {
val intentReferrer =
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
intent?.getParcelableExtra(Intent.EXTRA_REFERRER, Uri::class.java)
@ -40,7 +40,7 @@ class ExpoBlueskyReferrerModule : Module() {
"hostname" to intentReferrer.host,
)
intent = null
return@AsyncFunction res
return@Function res
}
// In all other cases, we'll just record the app that sent the intent.
@ -52,10 +52,10 @@ class ExpoBlueskyReferrerModule : Module() {
"hostname" to (activityReferrer?.host ?: ""),
)
activityReferrer = null
return@AsyncFunction res
return@Function res
}
return@AsyncFunction null
return@Function null
}
AsyncFunction("getGooglePlayReferrerInfoAsync") { promise: Promise ->