Skip to content

Commit

Permalink
[ios] Update Nativebrik version to 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
RyosukeCla committed Mar 5, 2024
1 parent becf8b4 commit c09a3f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Nativebrik.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Nativebrik'
s.version = '0.3.2'
s.version = '0.3.3'
s.summary = 'Nativebrik SDK'
s.description = <<-DESC
Nativebrik SDK for iOS.
Expand Down
6 changes: 3 additions & 3 deletions ios/Nativebrik/Nativebrik/sdk.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Foundation
import SwiftUI
import Combine

public let nativebrikSdkVersion = "0.3.2"
public let nativebrikSdkVersion = "0.3.3"
public let isNativebrikAvailable: Bool = {
if #available(iOS 15.0, *) {
return true
Expand Down Expand Up @@ -188,11 +188,11 @@ public class NativebrikExperiment {
self.repositories = repositories
self.overlayVC = overlay
}

public func dispatch(event: NativebrikEvent) {
self.overlayVC.triggerViewController.dispatch(event: event)
}

public func overlayViewController() -> UIViewController {
if !isNativebrikAvailable {
let vc = UIViewController()
Expand Down

0 comments on commit c09a3f0

Please sign in to comment.