Skip to content

Commit

Permalink
update version, fix minor bug in webBridge.
Browse files Browse the repository at this point in the history
  • Loading branch information
sagishm committed Aug 23, 2021
1 parent 95379b5 commit fb839f5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Gigya.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'Gigya'
spec.version = '1.2.2'
spec.version = '1.2.3'
spec.license = 'Apache 2.0'
spec.homepage = 'https://developers.gigya.com/display/GD/Swift+SDK'
spec.author = 'Gigya SAP'
Expand All @@ -10,7 +10,7 @@ Pod::Spec.new do |spec|
your Swift application
DESC

spec.source = { :git => 'https://github.com/SAP/gigya-swift-sdk.git', :tag => 'core/v1.2.2' }
spec.source = { :git => 'https://github.com/SAP/gigya-swift-sdk.git', :tag => 'core/v1.2.3' }
spec.module_name = 'Gigya'
spec.swift_version = '5.3'

Expand Down
8 changes: 4 additions & 4 deletions GigyaSwift.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2329,7 +2329,7 @@
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 120;
CURRENT_PROJECT_VERSION = 122;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = 52P2295V75;
DYLIB_COMPATIBILITY_VERSION = 1;
Expand All @@ -2349,7 +2349,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.2.2;
MARKETING_VERSION = 1.2.3;
MODULEMAP_FILE = "";
MODULEMAP_PRIVATE_FILE = "";
ONLY_ACTIVE_ARCH = NO;
Expand Down Expand Up @@ -2387,7 +2387,7 @@
CODE_SIGN_IDENTITY = "";
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 120;
CURRENT_PROJECT_VERSION = 122;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = 52P2295V75;
DYLIB_COMPATIBILITY_VERSION = 1;
Expand All @@ -2407,7 +2407,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.2.2;
MARKETING_VERSION = 1.2.3;
MODULEMAP_FILE = "";
MODULEMAP_PRIVATE_FILE = "";
ONLY_ACTIVE_ARCH = NO;
Expand Down
2 changes: 2 additions & 0 deletions GigyaSwift/Global/Plugins/GigyaWebBridge.swift
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,8 @@ public class GigyaWebBridge<T: GigyaAccountProtocol>: NSObject, WKScriptMessageH
self.completion(.error(event: data.toDictionary()))
self.invokeCallback(callbackId: callbackId, and: data.asJson())
default:
let dic: [String: Any] = ["errorCode": 400, "statusCode": 0]
self.invokeCallback(callbackId: callbackId, and: dic.asJson)
break
}
}
Expand Down
2 changes: 1 addition & 1 deletion Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ target 'TestApp' do
# Pods for TestApp
pod 'LineSDKSwift', '~> 5.0'

pod 'GoogleSignIn', '5.0.1', :modular_headers => false
pod 'GoogleSignIn', '6.0.1', :modular_headers => false
pod 'FBSDKCoreKit', '7.0.1'
pod 'FBSDKLoginKit', '7.0.1'

Expand Down

0 comments on commit fb839f5

Please sign in to comment.