idwise-react-native-sdk 4.7.0-alpha.2 → 4.7.1-alpha.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 +2 -15
- package/android/gradle.properties +1 -1
- 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 +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 +19 -19
- 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-arm64/IDWiseSDK.framework/document_detector.mlmodelc/model0/coremldata.bin +0 -0
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/document_quality_model.mlmodelc/coremldata.bin +0 -0
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/Assets.car +0 -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 +13 -13
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/document_detector.mlmodelc/coremldata.bin +0 -0
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -1,15 +1,6 @@
|
|
|
1
1
|
|
|
2
|
-
def props = new Properties()
|
|
3
|
-
def fProps = rootProject.file("publish.properties")
|
|
4
|
-
if (fProps.isFile()) {
|
|
5
|
-
props.load(new FileInputStream(fProps))
|
|
6
|
-
}
|
|
7
2
|
|
|
8
|
-
|
|
9
|
-
def fKeys = rootProject.file("key.properties")
|
|
10
|
-
if (fKeys.isFile()) {
|
|
11
|
-
keys.load(new FileInputStream(fKeys))
|
|
12
|
-
}
|
|
3
|
+
|
|
13
4
|
buildscript {
|
|
14
5
|
// Buildscript is evaluated before everything else so we can't use getExtOrDefault
|
|
15
6
|
def kotlin_version = rootProject.ext.has("kotlinVersion") ? rootProject.ext.get("kotlinVersion") : project.properties["IdwiseMobileSdk_kotlinVersion"]
|
|
@@ -105,11 +96,7 @@ repositories {
|
|
|
105
96
|
google()
|
|
106
97
|
maven{
|
|
107
98
|
name 'Staging'
|
|
108
|
-
url
|
|
109
|
-
credentials {
|
|
110
|
-
username = keys['SONATYPE_USERNAME']
|
|
111
|
-
password = keys['SONATYPE_PASSWORD']
|
|
112
|
-
}
|
|
99
|
+
url 'https://s01.oss.sonatype.org/content/repositories/staging/'
|
|
113
100
|
}
|
|
114
101
|
}
|
|
115
102
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|