idwise-react-native-sdk 4.7.0 → 4.7.1
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 +10 -1
- package/android/gradle.properties +2 -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/Headers/IDWise.h +18 -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 +2039 -530
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.private.swiftinterface +26 -3
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/arm64-apple-ios.swiftinterface +26 -3
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/_CodeSignature/CodeResources +26 -15
- 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/Headers/IDWise.h +18 -0
- 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 +2039 -530
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +26 -3
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Modules/IDWiseSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +26 -3
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/_CodeSignature/CodeResources +22 -11
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/document_detector.mlmodelc/coremldata.bin +0 -0
- package/package.json +7 -2
- package/android/frontend-sdk-ui-testing/bitbucket-pipelines.yml +0 -37
- package/android/frontend-sdk-ui-testing/version.txt +0 -1
package/android/build.gradle
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
|
|
1
4
|
buildscript {
|
|
2
5
|
// Buildscript is evaluated before everything else so we can't use getExtOrDefault
|
|
3
6
|
def kotlin_version = rootProject.ext.has("kotlinVersion") ? rootProject.ext.get("kotlinVersion") : project.properties["IdwiseMobileSdk_kotlinVersion"]
|
|
@@ -91,9 +94,14 @@ android {
|
|
|
91
94
|
repositories {
|
|
92
95
|
mavenCentral()
|
|
93
96
|
google()
|
|
97
|
+
maven{
|
|
98
|
+
name 'Staging'
|
|
99
|
+
url 'https://s01.oss.sonatype.org/content/repositories/staging/'
|
|
100
|
+
}
|
|
94
101
|
}
|
|
95
102
|
|
|
96
103
|
def kotlin_version = getExtOrDefault("kotlinVersion")
|
|
104
|
+
def idwise_sdk_version =project.properties["idwise_sdk_version"]
|
|
97
105
|
|
|
98
106
|
dependencies {
|
|
99
107
|
// For < 0.71, this will be from the local maven repo
|
|
@@ -102,6 +110,7 @@ dependencies {
|
|
|
102
110
|
implementation "com.facebook.react:react-native:+"
|
|
103
111
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
104
112
|
implementation 'com.google.code.gson:gson:2.10.1'
|
|
105
|
-
|
|
113
|
+
|
|
114
|
+
implementation "com.idwise:android-sdk:$idwise_sdk_version"
|
|
106
115
|
}
|
|
107
116
|
|
|
@@ -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-x86_64-simulator</string>
|
|
12
12
|
<key>LibraryPath</key>
|
|
13
13
|
<string>IDWiseSDK.framework</string>
|
|
14
14
|
<key>SupportedArchitectures</key>
|
|
15
15
|
<array>
|
|
16
|
-
<string>
|
|
16
|
+
<string>x86_64</string>
|
|
17
17
|
</array>
|
|
18
18
|
<key>SupportedPlatform</key>
|
|
19
19
|
<string>ios</string>
|
|
20
|
+
<key>SupportedPlatformVariant</key>
|
|
21
|
+
<string>simulator</string>
|
|
20
22
|
</dict>
|
|
21
23
|
<dict>
|
|
22
24
|
<key>BinaryPath</key>
|
|
23
25
|
<string>IDWiseSDK.framework/IDWiseSDK</string>
|
|
24
26
|
<key>LibraryIdentifier</key>
|
|
25
|
-
<string>ios-
|
|
27
|
+
<string>ios-arm64</string>
|
|
26
28
|
<key>LibraryPath</key>
|
|
27
29
|
<string>IDWiseSDK.framework</string>
|
|
28
30
|
<key>SupportedArchitectures</key>
|
|
29
31
|
<array>
|
|
30
|
-
<string>
|
|
32
|
+
<string>arm64</string>
|
|
31
33
|
</array>
|
|
32
34
|
<key>SupportedPlatform</key>
|
|
33
35
|
<string>ios</string>
|
|
34
|
-
<key>SupportedPlatformVariant</key>
|
|
35
|
-
<string>simulator</string>
|
|
36
36
|
</dict>
|
|
37
37
|
</array>
|
|
38
38
|
<key>CFBundlePackageType</key>
|
|
Binary file
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
//
|
|
2
|
+
// IDWise_ios_sdk.h
|
|
3
|
+
// IDWise_ios_sdk
|
|
4
|
+
//
|
|
5
|
+
// Created by Hussein Alshlash on 10.04.2021.
|
|
6
|
+
//
|
|
7
|
+
|
|
8
|
+
#import <Foundation/Foundation.h>
|
|
9
|
+
|
|
10
|
+
//! Project version number for IDWise_ios_sdk.
|
|
11
|
+
FOUNDATION_EXPORT double IDWiseVersionNumber;
|
|
12
|
+
|
|
13
|
+
//! Project version string for IDWise_ios_sdk.
|
|
14
|
+
FOUNDATION_EXPORT const unsigned char IDWiseVersionString[];
|
|
15
|
+
|
|
16
|
+
// In this header, you should import all the public headers of your framework using statements like #import <IDWise_ios_sdk/PublicHeader.h>
|
|
17
|
+
|
|
18
|
+
|
|
Binary file
|
|
Binary file
|