Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Call openUrl with a completionCallback, seems to fix a freeze #291

Merged
merged 1 commit into from
Apr 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,24 @@ package fr.androidmakers.domain.utils

import platform.Foundation.NSURL
import platform.UIKit.UIApplication
import platform.darwin.dispatch_async
import platform.darwin.dispatch_get_main_queue

actual class UrlOpener {
actual fun openUrl(url: String): Boolean {
val urlObj = NSURL(string = url)
return if (UIApplication.sharedApplication.canOpenURL(urlObj)) {
UIApplication.sharedApplication.openURL(urlObj)
val application = UIApplication.sharedApplication

application.openURL(url = urlObj, options = emptyMap<Any?, Any>()) {
if (!it) {
println("Could not open $url")
}
}
true
} else { false }
} else {
false
}
}
}

Loading