@infilectorg/infiviz-shots-react-sdk 1.2.7 → 1.2.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/README.md
CHANGED
|
@@ -3,7 +3,14 @@
|
|
|
3
3
|
- Always update this file when ever a new pr is raised. Log the features/bugs/improvements tickets in this file with newest on top.
|
|
4
4
|
|
|
5
5
|
Following are the versions for **React Native SDK**
|
|
6
|
+
- **V 1.2.9** <br/>
|
|
7
|
+
1. updating the IR results response
|
|
6
8
|
|
|
9
|
+
- **V 1.2.8** <br/>
|
|
10
|
+
1. updating the resume camera response
|
|
11
|
+
|
|
12
|
+
- **V 1.2.7** <br/>
|
|
13
|
+
1. updating the fetch session response
|
|
7
14
|
|
|
8
15
|
- **V 1.2.6** <br/>
|
|
9
16
|
1. Added Support for android 7
|
package/android/build.gradle
CHANGED
|
@@ -108,7 +108,7 @@ dependencies {
|
|
|
108
108
|
implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
|
|
109
109
|
|
|
110
110
|
|
|
111
|
-
implementation 'com.infilect:infivizshots-sdk:RN-1.2.
|
|
111
|
+
implementation 'com.infilect:infivizshots-sdk:RN-1.2.9'
|
|
112
112
|
|
|
113
113
|
testImplementation 'junit:junit:4.13.2'
|
|
114
114
|
implementation 'com.github.bumptech.glide:glide:4.14.2'
|
package/android/src/main/java/com/infilect/infivizshotsreactsdk/InfivizShotsReactSdkModule.kt
CHANGED
|
@@ -288,6 +288,7 @@ class InfivizShotsReactSdkModule(private val reactContext: ReactApplicationConte
|
|
|
288
288
|
currentActivity!!,
|
|
289
289
|
tempSessionId, 22, metadataMap, object : SDKCallback<String?> {
|
|
290
290
|
override fun onSuccess(response: String?) {
|
|
291
|
+
Log.d("RESUME CAMERA",response + " Sample ")
|
|
291
292
|
promise.resolve(response)
|
|
292
293
|
}
|
|
293
294
|
|