idwise-react-native-sdk 4.6.8 → 4.6.9
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 +1 -1
- package/android/frontend-sdk-ui-testing/bitbucket-pipelines.yml +37 -0
- package/android/frontend-sdk-ui-testing/version.txt +1 -0
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/FinishJourneyViewContoller.storyboardc/Y6W-OH-hqX-view-5EZ-qb-Rvc.nib/objects-13.0+.nib +0 -0
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/FinishJourneyViewContoller.storyboardc/Y6W-OH-hqX-view-5EZ-qb-Rvc.nib/runtime.nib +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 +79 -72
- package/ios/IDWiseSDK.xcframework/ios-arm64/IDWiseSDK.framework/_CodeSignature/CodeResources +20 -9
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/FinishJourneyViewContoller.storyboardc/Y6W-OH-hqX-view-5EZ-qb-Rvc.nib/objects-13.0+.nib +0 -0
- package/ios/IDWiseSDK.xcframework/ios-x86_64-simulator/IDWiseSDK.framework/FinishJourneyViewContoller.storyboardc/Y6W-OH-hqX-view-5EZ-qb-Rvc.nib/runtime.nib +0 -0
- 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 +79 -72
- 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 +1 -1
package/android/build.gradle
CHANGED
|
@@ -102,6 +102,6 @@ dependencies {
|
|
|
102
102
|
implementation "com.facebook.react:react-native:+"
|
|
103
103
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
104
104
|
implementation 'com.google.code.gson:gson:2.10.1'
|
|
105
|
-
implementation 'com.idwise:android-sdk:4.6.
|
|
105
|
+
implementation 'com.idwise:android-sdk:4.6.9'
|
|
106
106
|
}
|
|
107
107
|
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# This is an example Starter pipeline configuration
|
|
2
|
+
# Use a skeleton to build, test and deploy using manual and parallel steps
|
|
3
|
+
# -----
|
|
4
|
+
# You can specify a custom docker image from Docker Hub as your build environment.
|
|
5
|
+
|
|
6
|
+
image: atlassian/default-image:3
|
|
7
|
+
|
|
8
|
+
definitions:
|
|
9
|
+
steps:
|
|
10
|
+
- step: &DownloadArtifact
|
|
11
|
+
name: "Download Android Artifact"
|
|
12
|
+
size: 2x
|
|
13
|
+
script:
|
|
14
|
+
- curl -H "Authorization:Bearer ${UI_TEST_REPO_TOKEN}" --location "https://api.bitbucket.org/2.0/repositories/idwise/frontend-sdk-ui-testing/downloads/ui-testing-debug.apk" -o ui-testing-debug.apk
|
|
15
|
+
- ls -la
|
|
16
|
+
- export MDEV_APP_FILE=ui-testing-debug.apk
|
|
17
|
+
artifacts:
|
|
18
|
+
- ui-testing-debug.apk
|
|
19
|
+
# Readme: https://bitbucket.org/product/features/pipelines/integrations?search=maestro&p=mobiledevinc/maestro-cloud-upload
|
|
20
|
+
- step: &UploadToMaestroCloud
|
|
21
|
+
name: "Upload to Maestro Cloud"
|
|
22
|
+
size: 2x
|
|
23
|
+
script:
|
|
24
|
+
- pipe: mobiledevinc/maestro-cloud-upload:1.1.0
|
|
25
|
+
variables:
|
|
26
|
+
MDEV_API_KEY: $MDEV_API_KEY
|
|
27
|
+
MDEV_APP_FILE: ui-testing-debug.apk
|
|
28
|
+
MDEV_WORKSPACE: .maestro # optional
|
|
29
|
+
MDEV_ENV: |
|
|
30
|
+
MAESTRO_DRIVER_STARTUP_TIMEOUT=60000
|
|
31
|
+
MAESTRO_ENV_IDWISE_CLIENT_KEY=$MAESTRO_ENV_IDWISE_CLIENT_KEY
|
|
32
|
+
|
|
33
|
+
pipelines:
|
|
34
|
+
custom:
|
|
35
|
+
TestAndroidOnMaestro:
|
|
36
|
+
- step: *DownloadArtifact
|
|
37
|
+
- step: *UploadToMaestroCloud
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1.0.0
|
|
Binary file
|
|
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
|