idwise-react-native-sdk 4.7.2 → 4.7.3-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/build.gradle +2 -11
- package/android/gradle.properties +1 -3
- package/idwise-react-native-sdk.podspec +5 -0
- package/ios/IDWiseSDK.xcframework/Info.plist +6 -6
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Assets.car +0 -0
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/IDWiseSDK +0 -0
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Info.plist +0 -0
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.abi.json +576 -2085
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.private.swiftinterface +3 -26
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftinterface +3 -26
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/_CodeSignature/CodeResources +15 -26
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/document_detector.mlmodelc/coremldata.bin +0 -0
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/document_detector.mlmodelc/metadata.json +2 -2
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/IDWiseSDK +0 -0
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Info.plist +0 -0
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json +576 -2085
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +3 -26
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +3 -26
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/_CodeSignature/CodeResources +11 -22
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/document_detector.mlmodelc/coremldata.bin +0 -0
- package/lib/commonjs/IDWise.js.map +1 -1
- package/lib/commonjs/IDWiseConstants.js.map +1 -1
- package/lib/commonjs/IDWiseEventListeners.js.map +1 -1
- package/lib/commonjs/index.js +1 -1
- package/lib/commonjs/index.js.map +1 -1
- package/lib/module/IDWise.js.map +1 -1
- package/lib/module/IDWiseConstants.js.map +1 -1
- package/lib/module/IDWiseEventListeners.js.map +1 -1
- package/lib/module/index.js.map +1 -1
- package/package.json +5 -10
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Headers/IDWise.h +0 -18
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Headers/IDWise.h +0 -18
package/android/build.gradle
CHANGED
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
1
|
buildscript {
|
|
5
2
|
// Buildscript is evaluated before everything else so we can't use getExtOrDefault
|
|
6
3
|
def kotlin_version = rootProject.ext.has("kotlinVersion") ? rootProject.ext.get("kotlinVersion") : project.properties["IdwiseMobileSdk_kotlinVersion"]
|
|
@@ -12,7 +9,7 @@ buildscript {
|
|
|
12
9
|
}
|
|
13
10
|
|
|
14
11
|
dependencies {
|
|
15
|
-
classpath "com.android.tools.build:gradle:
|
|
12
|
+
classpath "com.android.tools.build:gradle:4.2.2"
|
|
16
13
|
// noinspection DifferentKotlinGradleVersion
|
|
17
14
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
18
15
|
}
|
|
@@ -94,14 +91,9 @@ android {
|
|
|
94
91
|
repositories {
|
|
95
92
|
mavenCentral()
|
|
96
93
|
google()
|
|
97
|
-
maven{
|
|
98
|
-
name 'Staging'
|
|
99
|
-
url 'https://s01.oss.sonatype.org/content/repositories/staging/'
|
|
100
|
-
}
|
|
101
94
|
}
|
|
102
95
|
|
|
103
96
|
def kotlin_version = getExtOrDefault("kotlinVersion")
|
|
104
|
-
def idwise_sdk_version =project.properties["idwise_sdk_version"]
|
|
105
97
|
|
|
106
98
|
dependencies {
|
|
107
99
|
// For < 0.71, this will be from the local maven repo
|
|
@@ -110,7 +102,6 @@ dependencies {
|
|
|
110
102
|
implementation "com.facebook.react:react-native:+"
|
|
111
103
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
112
104
|
implementation 'com.google.code.gson:gson:2.10.1'
|
|
113
|
-
|
|
114
|
-
implementation "com.idwise:android-sdk:$idwise_sdk_version"
|
|
105
|
+
implementation 'com.idwise:android-sdk:4.7.0'
|
|
115
106
|
}
|
|
116
107
|
|
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
IdwiseMobileSdk_kotlinVersion=1.7.
|
|
1
|
+
IdwiseMobileSdk_kotlinVersion=1.7.10
|
|
2
2
|
IdwiseMobileSdk_minSdkVersion=21
|
|
3
3
|
IdwiseMobileSdk_targetSdkVersion=31
|
|
4
4
|
IdwiseMobileSdk_compileSdkVersion=31
|
|
5
5
|
IdwiseMobileSdk_ndkversion=21.4.7075529
|
|
6
|
-
# Idwise SDK version
|
|
7
|
-
idwise_sdk_version=4.7.2
|
|
@@ -37,6 +37,11 @@ s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
|
|
|
37
37
|
install_modules_dependencies(s)
|
|
38
38
|
else
|
|
39
39
|
s.dependency "React-Core"
|
|
40
|
+
s.dependency "React-Codegen"
|
|
41
|
+
s.dependency "RCT-Folly"
|
|
42
|
+
s.dependency "RCTRequired"
|
|
43
|
+
s.dependency "RCTTypeSafety"
|
|
44
|
+
s.dependency "ReactCommon/turbomodule/core"
|
|
40
45
|
|
|
41
46
|
|
|
42
47
|
# Don't install the dependencies when we run `pod install` in the old architecture.
|
|
@@ -8,31 +8,31 @@
|
|
|
8
8
|
<key>BinaryPath</key>
|
|
9
9
|
<string>IDWiseSDK.framework/IDWiseSDK</string>
|
|
10
10
|
<key>LibraryIdentifier</key>
|
|
11
|
-
<string>ios-
|
|
11
|
+
<string>ios-arm64</string>
|
|
12
12
|
<key>LibraryPath</key>
|
|
13
13
|
<string>IDWiseSDK.framework</string>
|
|
14
14
|
<key>SupportedArchitectures</key>
|
|
15
15
|
<array>
|
|
16
|
-
<string>
|
|
16
|
+
<string>arm64</string>
|
|
17
17
|
</array>
|
|
18
18
|
<key>SupportedPlatform</key>
|
|
19
19
|
<string>ios</string>
|
|
20
|
-
<key>SupportedPlatformVariant</key>
|
|
21
|
-
<string>simulator</string>
|
|
22
20
|
</dict>
|
|
23
21
|
<dict>
|
|
24
22
|
<key>BinaryPath</key>
|
|
25
23
|
<string>IDWiseSDK.framework/IDWiseSDK</string>
|
|
26
24
|
<key>LibraryIdentifier</key>
|
|
27
|
-
<string>ios-
|
|
25
|
+
<string>ios-x86_64-simulator</string>
|
|
28
26
|
<key>LibraryPath</key>
|
|
29
27
|
<string>IDWiseSDK.framework</string>
|
|
30
28
|
<key>SupportedArchitectures</key>
|
|
31
29
|
<array>
|
|
32
|
-
<string>
|
|
30
|
+
<string>x86_64</string>
|
|
33
31
|
</array>
|
|
34
32
|
<key>SupportedPlatform</key>
|
|
35
33
|
<string>ios</string>
|
|
34
|
+
<key>SupportedPlatformVariant</key>
|
|
35
|
+
<string>simulator</string>
|
|
36
36
|
</dict>
|
|
37
37
|
</array>
|
|
38
38
|
<key>CFBundlePackageType</key>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|