Skip to content

Commit

Permalink
fix(opener): iOS build
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog committed Dec 10, 2024
1 parent 829b632 commit 354f537
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 16 deletions.
5 changes: 5 additions & 0 deletions .changes/fix-opener-ios-fn-name.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"opener": patch
---

Fix usage on iOS.
30 changes: 14 additions & 16 deletions plugins/opener/ios/Sources/OpenerPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,32 +3,30 @@
// SPDX-License-Identifier: MIT

import Foundation

import SwiftRs
import Tauri
import UIKit
import WebKit

class OpenerPlugin: Plugin {

@objc public func open(_ invoke: Invoke) throws {
do {
let urlString = try invoke.parseArgs(String.self)
if let url = URL(string: urlString) {
if #available(iOS 10, *) {
UIApplication.shared.open(url, options: [:])
} else {
UIApplication.shared.openURL(url)
}
}
invoke.resolve()
} catch {
invoke.reject(error.localizedDescription)
@objc public func open(_ invoke: Invoke) throws {
do {
let urlString = try invoke.parseArgs(String.self)
if let url = URL(string: urlString) {
if #available(iOS 10, *) {
UIApplication.shared.open(url, options: [:])
} else {
UIApplication.shared.openURL(url)
}
}
invoke.resolve()
} catch {
invoke.reject(error.localizedDescription)
}
}
}

@_cdecl("init_plugin_shell")
@_cdecl("init_plugin_opener")
func initPlugin() -> Plugin {
return OpenerPlugin()
}

0 comments on commit 354f537

Please sign in to comment.