From aedc96c94f48078886d9478a6d8f38e350afd2d1 Mon Sep 17 00:00:00 2001 From: Mohamed Yussuf Date: Wed, 9 Sep 2020 23:12:01 +0800 Subject: [PATCH] fix boost cancelled trigger --- Example/RevenueMonster.xcodeproj/project.pbxproj | 12 ++++++------ README.md | 2 +- RevenueMonster.podspec | 2 +- RevenueMonster/Classes/Payment/Checkout.swift | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/Example/RevenueMonster.xcodeproj/project.pbxproj b/Example/RevenueMonster.xcodeproj/project.pbxproj index 6fd7fd2..197ed06 100644 --- a/Example/RevenueMonster.xcodeproj/project.pbxproj +++ b/Example/RevenueMonster.xcodeproj/project.pbxproj @@ -216,7 +216,7 @@ TargetAttributes = { 607FACCF1AFB9204008FA782 = { CreatedOnToolsVersion = 6.3.1; - DevelopmentTeam = BDZ4N42FLM; + DevelopmentTeam = 8SQQV32J6L; LastSwiftMigration = 1020; ProvisioningStyle = Automatic; SystemCapabilities = { @@ -227,7 +227,7 @@ }; 607FACE41AFB9204008FA782 = { CreatedOnToolsVersion = 6.3.1; - DevelopmentTeam = BDZ4N42FLM; + DevelopmentTeam = 8SQQV32J6L; LastSwiftMigration = 1020; TestTargetID = 607FACCF1AFB9204008FA782; }; @@ -489,7 +489,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_IDENTITY = "iPhone Developer"; CODE_SIGN_STYLE = Automatic; - DEVELOPMENT_TEAM = BDZ4N42FLM; + DEVELOPMENT_TEAM = 8SQQV32J6L; INFOPLIST_FILE = RevenueMonster/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; MODULE_NAME = ExampleApp; @@ -507,7 +507,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_IDENTITY = "iPhone Developer"; CODE_SIGN_STYLE = Automatic; - DEVELOPMENT_TEAM = BDZ4N42FLM; + DEVELOPMENT_TEAM = 8SQQV32J6L; INFOPLIST_FILE = RevenueMonster/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; MODULE_NAME = ExampleApp; @@ -522,7 +522,7 @@ isa = XCBuildConfiguration; baseConfigurationReference = 9807D7B99106FDD1BD0FDC85 /* Pods-RevenueMonster_Tests.debug.xcconfig */; buildSettings = { - DEVELOPMENT_TEAM = BDZ4N42FLM; + DEVELOPMENT_TEAM = 8SQQV32J6L; FRAMEWORK_SEARCH_PATHS = ( "$(SDKROOT)/Developer/Library/Frameworks", "$(inherited)", @@ -544,7 +544,7 @@ isa = XCBuildConfiguration; baseConfigurationReference = D295D324D30EA5E457E6C5A0 /* Pods-RevenueMonster_Tests.release.xcconfig */; buildSettings = { - DEVELOPMENT_TEAM = BDZ4N42FLM; + DEVELOPMENT_TEAM = 8SQQV32J6L; FRAMEWORK_SEARCH_PATHS = ( "$(SDKROOT)/Developer/Library/Frameworks", "$(inherited)", diff --git a/README.md b/README.md index bfe7635..b720320 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ RevenueMonster is available through [CocoaPods](https://cocoapods.org). To insta it, simply add the following line to your Podfile: ```ruby -pod 'RevenueMonster', '0.1-beta.7' +pod 'RevenueMonster', '0.1-beta.8' ``` ## Author diff --git a/RevenueMonster.podspec b/RevenueMonster.podspec index dd67577..7a24ae5 100644 --- a/RevenueMonster.podspec +++ b/RevenueMonster.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = 'RevenueMonster' - s.version = '0.1-beta.7' + s.version = '0.1-beta.8' s.summary = 'RM SDK for IOS' s.description = <<-DESC diff --git a/RevenueMonster/Classes/Payment/Checkout.swift b/RevenueMonster/Classes/Payment/Checkout.swift index e30de58..b03069e 100644 --- a/RevenueMonster/Classes/Payment/Checkout.swift +++ b/RevenueMonster/Classes/Payment/Checkout.swift @@ -192,6 +192,7 @@ public final class Checkout { private func openURL(_ url: String) throws { if !self.isAppInstalled || url.contains("https://") { + self.inAppWebView = true try self.openBrowser(url) return }