Skip to content

Commit 16e37f3

Browse files
Merge pull request #8 from TransmitSecurity/feature/MOB-2405
MOB-2405 Upgraded Native SDKs to iOS 1.2.0 and Android 1.0.29
2 parents bbfeb50 + 36a01c9 commit 16e37f3

File tree

6 files changed

+17343
-2388
lines changed

6 files changed

+17343
-2388
lines changed

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ dependencies {
8383
// For < 0.71, this will be from the local maven repo
8484
// For > 0.71, this will be replaced by `com.facebook.react:react-android:$version` by react gradle plugin
8585
//noinspection GradleDynamicVersion
86-
implementation("com.ts.sdk:authentication:1.0.27")
86+
implementation("com.ts.sdk:authentication:1.0.29")
8787
implementation "com.facebook.react:react-native:+"
8888
}
8989

example/ios/Podfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,13 @@ target 'TsAuthenticationExample' do
5858
:mac_catalyst_enabled => false
5959
)
6060
# __apply_Xcode_12_5_M1_post_install_workaround(installer)
61+
62+
xcconfig_paths = Dir.glob("Pods/Target Support Files/**/*.xcconfig")
63+
xcconfig_paths.each do |path|
64+
text = File.read(path)
65+
next unless text.include?("EXCLUDED_ARCHS[sdk=iphonesimulator*] = arm64")
66+
text = text.gsub(/^EXCLUDED_ARCHS\[sdk=iphonesimulator\*\]\s*=\s*arm64\s*$/, "")
67+
File.write(path, text)
68+
end
6169
end
6270
end

example/ios/Podfile.lock

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1332,7 +1332,7 @@ PODS:
13321332
- React-jsiexecutor
13331333
- React-RCTFBReactNativeSpec
13341334
- ReactCommon/turbomodule/core
1335-
- react-native-ts-authentication (0.1.6):
1335+
- react-native-ts-authentication (0.1.7):
13361336
- DoubleConversion
13371337
- glog
13381338
- hermes-engine
@@ -1355,7 +1355,7 @@ PODS:
13551355
- ReactCodegen
13561356
- ReactCommon/turbomodule/bridging
13571357
- ReactCommon/turbomodule/core
1358-
- TSAuthentication (~> 1.1.16)
1358+
- TSAuthentication (~> 1.2.0)
13591359
- Yoga
13601360
- React-NativeModulesApple (0.79.2):
13611361
- glog
@@ -1679,7 +1679,7 @@ PODS:
16791679
- React-logger (= 0.79.2)
16801680
- React-perflogger (= 0.79.2)
16811681
- React-utils (= 0.79.2)
1682-
- RNCAsyncStorage (2.1.2):
1682+
- RNCAsyncStorage (2.2.0):
16831683
- DoubleConversion
16841684
- glog
16851685
- hermes-engine
@@ -1704,9 +1704,9 @@ PODS:
17041704
- ReactCommon/turbomodule/core
17051705
- Yoga
17061706
- SocketRocket (0.7.1)
1707-
- TSAuthentication (1.1.16):
1708-
- TSCoreSDK (~> 1.0.31)
1709-
- TSCoreSDK (1.0.31)
1707+
- TSAuthentication (1.2.0):
1708+
- TSCoreSDK (~> 1.1.0)
1709+
- TSCoreSDK (1.1.2)
17101710
- Yoga (0.0.0)
17111711

17121712
DEPENDENCIES:
@@ -1977,7 +1977,7 @@ SPEC CHECKSUMS:
19771977
React-logger: 8edfcedc100544791cd82692ca5a574240a16219
19781978
React-Mapbuffer: c3f4b608e4a59dd2f6a416ef4d47a14400194468
19791979
React-microtasksnativemodule: 054f34e9b82f02bd40f09cebd4083828b5b2beb6
1980-
react-native-ts-authentication: b593657502c035d70c2974f0d256ee595cab854f
1980+
react-native-ts-authentication: c67e1ffe9e9a3bcb120a9a293f497b149195cd73
19811981
React-NativeModulesApple: 2c4377e139522c3d73f5df582e4f051a838ff25e
19821982
React-oscompat: ef5df1c734f19b8003e149317d041b8ce1f7d29c
19831983
React-perflogger: 9a151e0b4c933c9205fd648c246506a83f31395d
@@ -2009,12 +2009,12 @@ SPEC CHECKSUMS:
20092009
ReactAppDependencyProvider: 04d5eb15eb46be6720e17a4a7fa92940a776e584
20102010
ReactCodegen: c63eda03ba1d94353fb97b031fc84f75a0d125ba
20112011
ReactCommon: 76d2dc87136d0a667678668b86f0fca0c16fdeb0
2012-
RNCAsyncStorage: 39c42c1e478e1f5166d1db52b5055e090e85ad66
2012+
RNCAsyncStorage: a1c8cc8a99c32de1244a9cf707bf9d83d0de0f71
20132013
SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
2014-
TSAuthentication: 793b3ca03c1a649479f789270bd609d4a94826d5
2015-
TSCoreSDK: 3c459fa58dc09c44a2ec327cb977268bc78b146c
2014+
TSAuthentication: 7a1a261c0fbb4224c507ac4858b3552da6be621b
2015+
TSCoreSDK: 4f470f7de900589db07d9ff2967b5d733fe1be1d
20162016
Yoga: c758bfb934100bb4bf9cbaccb52557cee35e8bdf
20172017

2018-
PODFILE CHECKSUM: 7a7b1bf68644c36322ee8a83a19a7731d822d0ac
2018+
PODFILE CHECKSUM: 24037f67389a2e69180ad966846cd8618b3de8ae
20192019

20202020
COCOAPODS: 1.16.2

0 commit comments

Comments
 (0)