We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04a4c5b commit ff423bcCopy full SHA for ff423bc
CallbackURLKit.podspec
@@ -2,7 +2,7 @@ Pod::Spec.new do |s|
2
3
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
4
s.name = "CallbackURLKit"
5
- s.version = "1.0.0"
+ s.version = "1.0.1"
6
s.summary = "Implemenation of x-callback-url in swift"
7
s.homepage = "https://github.com/phimage/CallbackURLKit"
8
Sources/Manager.swift
@@ -46,7 +46,8 @@ open class Manager {
46
// Specify an URL scheme for callback
47
open var callbackURLScheme: String?
48
49
- init() {
+ public init(callbackURLScheme: String? = nil) {
50
+ self.callbackURLScheme = callbackURLScheme
51
}
52
53
// Add an action handler ie. url path and block
0 commit comments