Skip to content

Commit

Permalink
Fix permission settings opening for iOS 18 (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmda28 authored Oct 4, 2024
1 parent 311aabd commit 447dee5
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ import platform.UIKit.UIApplicationOpenSettingsURLString

internal actual fun openPermissionSettings() {
UIApplication.sharedApplication().openURL(
url = NSURL(string = UIApplicationOpenSettingsURLString)
url = NSURL(string = UIApplicationOpenSettingsURLString),
options = emptyMap<Any?, Any>(),
completionHandler = null
)
}

0 comments on commit 447dee5

Please sign in to comment.