@infilectorg/infiviz-shots-react-sdk 1.0.29 → 1.0.31
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/src/main/java/com/infilect/infivizshotsreactsdk/InfivizShotsReactSdkModule.kt +50 -57
- package/ios/InfivizShotSDK.xcframework/Info.plist +5 -5
- package/ios/InfivizShotSDK.xcframework/ios-arm64/InfivizShotSDK.framework/Assets.car +0 -0
- package/ios/InfivizShotSDK.xcframework/ios-arm64/InfivizShotSDK.framework/InfivizShotSDK +0 -0
- package/ios/InfivizShotSDK.xcframework/ios-arm64/InfivizShotSDK.framework/Modules/InfivizShotSDK.swiftmodule/arm64-apple-ios.abi.json +20 -27
- package/ios/InfivizShotSDK.xcframework/ios-arm64/InfivizShotSDK.framework/shotsSDK.storyboardc/xUL-ol-gRQ-view-6A8-mO-Rhi.nib +0 -0
- package/ios/InfivizShotSDK.xcframework/ios-arm64_x86_64-simulator/InfivizShotSDK.framework/InfivizShotSDK +0 -0
- package/ios/InfivizShotSDK.xcframework/ios-arm64_x86_64-simulator/InfivizShotSDK.framework/Modules/InfivizShotSDK.swiftmodule/arm64-apple-ios-simulator.abi.json +20 -27
- package/ios/InfivizShotSDK.xcframework/ios-arm64_x86_64-simulator/InfivizShotSDK.framework/Modules/InfivizShotSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json +20 -27
- package/ios/InfivizShotSDK.xcframework/ios-arm64_x86_64-simulator/InfivizShotSDK.framework/shotsSDK.storyboardc/xUL-ol-gRQ-view-6A8-mO-Rhi.nib +0 -0
- package/ios/InfivizShotsReactSdk.m +5 -5
- package/ios/InfivizShotsReactSdk.swift +72 -57
- package/lib/module/NativeInfivizShotsReactSdk.js +2 -0
- package/lib/module/NativeInfivizShotsReactSdk.js.map +1 -1
- package/lib/module/index.js +5 -3
- package/lib/module/index.js.map +1 -1
- package/lib/module/package.json +1 -0
- package/lib/module/types/Environment.js +2 -0
- package/lib/module/types/Environment.js.map +1 -1
- package/lib/module/types/ImageMetaData.js +2 -0
- package/lib/module/types/ImageMetaData.js.map +1 -1
- package/lib/module/types/InfiSession.js +2 -0
- package/lib/module/types/InfiSession.js.map +1 -1
- package/lib/module/types/LabelScore.js +1 -1
- package/lib/module/types/LabelScore.js.map +1 -1
- package/lib/module/types/SessionStatus.js +1 -1
- package/lib/module/types/SessionStatus.js.map +1 -1
- package/lib/module/types/SessionSyncStateEnum.js +2 -0
- package/lib/module/types/SessionSyncStateEnum.js.map +1 -1
- package/lib/typescript/package.json +1 -0
- package/lib/typescript/src/NativeInfivizShotsReactSdk.d.ts +23 -0
- package/lib/typescript/src/NativeInfivizShotsReactSdk.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +24 -0
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/lib/typescript/src/types/Environment.d.ts +5 -0
- package/lib/typescript/src/types/Environment.d.ts.map +1 -0
- package/lib/typescript/src/types/ImageMetaData.d.ts +13 -0
- package/lib/typescript/src/types/ImageMetaData.d.ts.map +1 -0
- package/lib/typescript/src/types/InfiSession.d.ts +18 -0
- package/lib/typescript/src/types/InfiSession.d.ts.map +1 -0
- package/lib/typescript/src/types/LabelScore.d.ts +5 -0
- package/lib/typescript/src/types/LabelScore.d.ts.map +1 -0
- package/lib/typescript/src/types/SessionStatus.d.ts +5 -0
- package/lib/typescript/src/types/SessionStatus.d.ts.map +1 -0
- package/lib/typescript/src/types/SessionSyncStateEnum.d.ts +8 -0
- package/lib/typescript/src/types/SessionSyncStateEnum.d.ts.map +1 -0
- package/package.json +1 -1
- package/src/NativeInfivizShotsReactSdk.tsx +1 -1
- package/src/index.tsx +3 -3
- package/src/types/ImageMetaData.ts +1 -0
package/android/build.gradle
CHANGED
|
@@ -103,7 +103,7 @@ dependencies {
|
|
|
103
103
|
implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
|
|
104
104
|
|
|
105
105
|
|
|
106
|
-
implementation 'com.infilect:infivizshots-sdk:RN-1.0.
|
|
106
|
+
implementation 'com.infilect:infivizshots-sdk:RN-1.0.7'
|
|
107
107
|
|
|
108
108
|
testImplementation 'junit:junit:4.13.2'
|
|
109
109
|
implementation 'com.github.bumptech.glide:glide:4.14.2'
|
package/android/src/main/java/com/infilect/infivizshotsreactsdk/InfivizShotsReactSdkModule.kt
CHANGED
|
@@ -32,6 +32,7 @@ import infilect.infiviz.infilect_client.model.ivyresponse.SDKCallback
|
|
|
32
32
|
import infilect.infiviz.infilect_client.model.ivyresponse.UploadCallback
|
|
33
33
|
import infilect.infiviz.sdkEnvironment.InfivizshotsEnvironment
|
|
34
34
|
import kotlin.jvm.java
|
|
35
|
+
import android.util.Log
|
|
35
36
|
|
|
36
37
|
@ReactModule(name = InfivizShotsReactSdkModule.NAME)
|
|
37
38
|
class InfivizShotsReactSdkModule(private val reactContext: ReactApplicationContext) :
|
|
@@ -54,13 +55,37 @@ class InfivizShotsReactSdkModule(private val reactContext: ReactApplicationConte
|
|
|
54
55
|
}
|
|
55
56
|
}
|
|
56
57
|
|
|
58
|
+
fun convertReadableMapToStringHashMap(readableMap: ReadableMap?): HashMap<String, String> {
|
|
59
|
+
val result = HashMap<String, String>()
|
|
60
|
+
if(readableMap!=null){
|
|
61
|
+
val iterator = readableMap.keySetIterator()
|
|
62
|
+
|
|
63
|
+
while (iterator.hasNextKey()) {
|
|
64
|
+
val key = iterator.nextKey()
|
|
65
|
+
try {
|
|
66
|
+
result[key] = when (readableMap.getType(key)) {
|
|
67
|
+
com.facebook.react.bridge.ReadableType.Null -> ""
|
|
68
|
+
com.facebook.react.bridge.ReadableType.Boolean -> readableMap.getBoolean(key).toString()
|
|
69
|
+
com.facebook.react.bridge.ReadableType.Number -> readableMap.getDouble(key).toString()
|
|
70
|
+
com.facebook.react.bridge.ReadableType.String -> readableMap.getString(key) ?: ""
|
|
71
|
+
else -> ""
|
|
72
|
+
}
|
|
73
|
+
} catch (e: Exception) {
|
|
74
|
+
result[key] = ""
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
return result
|
|
79
|
+
}
|
|
80
|
+
|
|
57
81
|
private fun sendEventToReact(
|
|
58
|
-
eventName: SDKEvent, sessionId: String, status: String, message: String
|
|
82
|
+
eventName: SDKEvent, sessionId: String, status: String, message: String, universalSessionId: String? = null
|
|
59
83
|
) {
|
|
60
84
|
val params = Arguments.createMap().apply {
|
|
61
85
|
putString("sessionId", sessionId)
|
|
62
86
|
putString("status", status)
|
|
63
87
|
putString("message", message)
|
|
88
|
+
putString("universalSessionId", universalSessionId)
|
|
64
89
|
}
|
|
65
90
|
|
|
66
91
|
if (reactContext.hasActiveReactInstance()) {
|
|
@@ -69,6 +94,22 @@ class InfivizShotsReactSdkModule(private val reactContext: ReactApplicationConte
|
|
|
69
94
|
}
|
|
70
95
|
}
|
|
71
96
|
|
|
97
|
+
// Add this async function
|
|
98
|
+
private fun fetchUniversalSessionIdAsync(temporarySessionID: String, callback: (String?) -> Unit) {
|
|
99
|
+
InfiVizShotsSDK.fetchUniversalSessionId(
|
|
100
|
+
currentActivity,
|
|
101
|
+
temporarySessionID, object : SDKCallback<String> {
|
|
102
|
+
override fun onSuccess(sessionId: String) {
|
|
103
|
+
callback(sessionId)
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
override fun onError(sdkExceptions: SDKExceptions) {
|
|
107
|
+
Log.e("SDK", "Error fetching universal session ID", sdkExceptions)
|
|
108
|
+
callback(null)
|
|
109
|
+
}
|
|
110
|
+
})
|
|
111
|
+
}
|
|
112
|
+
|
|
72
113
|
private fun sendEventToReact(eventName: SDKEvent, sessionId: String) {
|
|
73
114
|
if (reactContext.hasActiveReactInstance()) {
|
|
74
115
|
reactContext.getJSModule(DeviceEventManagerModule.RCTDeviceEventEmitter::class.java)
|
|
@@ -150,30 +191,14 @@ class InfivizShotsReactSdkModule(private val reactContext: ReactApplicationConte
|
|
|
150
191
|
category: String,
|
|
151
192
|
maxPhoto: Double,
|
|
152
193
|
maxPhotoOneGo: Double,
|
|
153
|
-
metaData: ReadableMap
|
|
194
|
+
metaData: ReadableMap?,
|
|
154
195
|
promise: Promise
|
|
155
196
|
) {
|
|
156
197
|
startCameraCallback = {
|
|
157
198
|
promise.resolve(it)
|
|
158
199
|
}
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
val metadataMap: Map<String, Any> = metaData.let { map ->
|
|
162
|
-
val result = mutableMapOf<String, Any>()
|
|
163
|
-
val iterator = map.entryIterator
|
|
164
|
-
while (iterator.hasNextKey()) {
|
|
165
|
-
val key = iterator.nextKey()
|
|
166
|
-
val value = map.getDynamic(key)
|
|
167
|
-
when {
|
|
168
|
-
value.isNull -> result[key] = null
|
|
169
|
-
value.isBoolean -> result[key] = value.asBoolean()
|
|
170
|
-
value.isNumber -> result[key] = value.asDouble()
|
|
171
|
-
value.isString -> result[key] = value.asString()
|
|
172
|
-
else -> result[key] = value.toString()
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
result
|
|
176
|
-
}
|
|
200
|
+
|
|
201
|
+
val metadataMap = convertReadableMapToStringHashMap(metaData)
|
|
177
202
|
|
|
178
203
|
InfiVizShotsSDK.startCamera(
|
|
179
204
|
currentActivity!!,
|
|
@@ -204,29 +229,13 @@ class InfivizShotsReactSdkModule(private val reactContext: ReactApplicationConte
|
|
|
204
229
|
metaData: ReadableMap,
|
|
205
230
|
promise: Promise
|
|
206
231
|
) {
|
|
207
|
-
|
|
208
|
-
val metadataMap: Map<String, Any> = metaData.let { map ->
|
|
209
|
-
val result = mutableMapOf<String, Any>()
|
|
210
|
-
val iterator = map.entryIterator
|
|
211
|
-
while (iterator.hasNextKey()) {
|
|
212
|
-
val key = iterator.nextKey()
|
|
213
|
-
val value = map.getDynamic(key)
|
|
214
|
-
when {
|
|
215
|
-
value.isNull -> result[key] = null
|
|
216
|
-
value.isBoolean -> result[key] = value.asBoolean()
|
|
217
|
-
value.isNumber -> result[key] = value.asDouble()
|
|
218
|
-
value.isString -> result[key] = value.asString()
|
|
219
|
-
else -> result[key] = value.toString()
|
|
220
|
-
}
|
|
221
|
-
}
|
|
222
|
-
result
|
|
223
|
-
}
|
|
232
|
+
// val metadataMap = metaData.toStringHashMap()
|
|
224
233
|
|
|
225
234
|
InfiVizShotsSDK.retakeImage(
|
|
226
235
|
currentActivity!!,
|
|
227
236
|
temporarySessionId,
|
|
228
237
|
imageURI,
|
|
229
|
-
metadataMap,
|
|
238
|
+
// metadataMap,
|
|
230
239
|
object : SDKCallback<String> {
|
|
231
240
|
override fun onSuccess(response: String) {
|
|
232
241
|
promise.resolve(response)
|
|
@@ -265,27 +274,11 @@ class InfivizShotsReactSdkModule(private val reactContext: ReactApplicationConte
|
|
|
265
274
|
@ReactMethod
|
|
266
275
|
fun resumeCamera(
|
|
267
276
|
tempSessionId: String,
|
|
268
|
-
metaData: ReadableMap
|
|
277
|
+
metaData: ReadableMap?,
|
|
269
278
|
promise: Promise
|
|
270
279
|
) {
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
val result = mutableMapOf<String, Any>()
|
|
274
|
-
val iterator = map.entryIterator
|
|
275
|
-
while (iterator.hasNextKey()) {
|
|
276
|
-
val key = iterator.nextKey()
|
|
277
|
-
val value = map.getDynamic(key)
|
|
278
|
-
when {
|
|
279
|
-
value.isNull -> result[key] = null
|
|
280
|
-
value.isBoolean -> result[key] = value.asBoolean()
|
|
281
|
-
value.isNumber -> result[key] = value.asDouble()
|
|
282
|
-
value.isString -> result[key] = value.asString()
|
|
283
|
-
else -> result[key] = value.toString()
|
|
284
|
-
}
|
|
285
|
-
}
|
|
286
|
-
result
|
|
287
|
-
}
|
|
288
|
-
|
|
280
|
+
val metadataMap = convertReadableMapToStringHashMap(metaData)
|
|
281
|
+
|
|
289
282
|
InfiVizShotsSDK.resumeCamera(
|
|
290
283
|
currentActivity!!,
|
|
291
284
|
tempSessionId, 22, metadataMap, object : SDKCallback<String?> {
|
|
@@ -8,32 +8,32 @@
|
|
|
8
8
|
<key>BinaryPath</key>
|
|
9
9
|
<string>InfivizShotSDK.framework/InfivizShotSDK</string>
|
|
10
10
|
<key>LibraryIdentifier</key>
|
|
11
|
-
<string>ios-
|
|
11
|
+
<string>ios-arm64</string>
|
|
12
12
|
<key>LibraryPath</key>
|
|
13
13
|
<string>InfivizShotSDK.framework</string>
|
|
14
14
|
<key>SupportedArchitectures</key>
|
|
15
15
|
<array>
|
|
16
16
|
<string>arm64</string>
|
|
17
|
-
<string>x86_64</string>
|
|
18
17
|
</array>
|
|
19
18
|
<key>SupportedPlatform</key>
|
|
20
19
|
<string>ios</string>
|
|
21
|
-
<key>SupportedPlatformVariant</key>
|
|
22
|
-
<string>simulator</string>
|
|
23
20
|
</dict>
|
|
24
21
|
<dict>
|
|
25
22
|
<key>BinaryPath</key>
|
|
26
23
|
<string>InfivizShotSDK.framework/InfivizShotSDK</string>
|
|
27
24
|
<key>LibraryIdentifier</key>
|
|
28
|
-
<string>ios-
|
|
25
|
+
<string>ios-arm64_x86_64-simulator</string>
|
|
29
26
|
<key>LibraryPath</key>
|
|
30
27
|
<string>InfivizShotSDK.framework</string>
|
|
31
28
|
<key>SupportedArchitectures</key>
|
|
32
29
|
<array>
|
|
33
30
|
<string>arm64</string>
|
|
31
|
+
<string>x86_64</string>
|
|
34
32
|
</array>
|
|
35
33
|
<key>SupportedPlatform</key>
|
|
36
34
|
<string>ios</string>
|
|
35
|
+
<key>SupportedPlatformVariant</key>
|
|
36
|
+
<string>simulator</string>
|
|
37
37
|
</dict>
|
|
38
38
|
</array>
|
|
39
39
|
<key>CFBundlePackageType</key>
|
|
Binary file
|
|
Binary file
|
|
@@ -82768,14 +82768,14 @@
|
|
|
82768
82768
|
{
|
|
82769
82769
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/MainInteractor\/InfilectSDKCameraActivityForResult.swift",
|
|
82770
82770
|
"kind": "BooleanLiteral",
|
|
82771
|
-
"offset":
|
|
82771
|
+
"offset": 13151,
|
|
82772
82772
|
"length": 5,
|
|
82773
82773
|
"value": "false"
|
|
82774
82774
|
},
|
|
82775
82775
|
{
|
|
82776
82776
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/MainInteractor\/InfilectSDKCameraActivityForResult.swift",
|
|
82777
82777
|
"kind": "BooleanLiteral",
|
|
82778
|
-
"offset":
|
|
82778
|
+
"offset": 13228,
|
|
82779
82779
|
"length": 5,
|
|
82780
82780
|
"value": "false"
|
|
82781
82781
|
},
|
|
@@ -84284,31 +84284,24 @@
|
|
|
84284
84284
|
"length": 2,
|
|
84285
84285
|
"value": "\"\""
|
|
84286
84286
|
},
|
|
84287
|
-
{
|
|
84288
|
-
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84289
|
-
"kind": "BooleanLiteral",
|
|
84290
|
-
"offset": 6341,
|
|
84291
|
-
"length": 4,
|
|
84292
|
-
"value": "true"
|
|
84293
|
-
},
|
|
84294
84287
|
{
|
|
84295
84288
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84296
84289
|
"kind": "IntegerLiteral",
|
|
84297
|
-
"offset":
|
|
84290
|
+
"offset": 6385,
|
|
84298
84291
|
"length": 1,
|
|
84299
84292
|
"value": "0"
|
|
84300
84293
|
},
|
|
84301
84294
|
{
|
|
84302
84295
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84303
84296
|
"kind": "IntegerLiteral",
|
|
84304
|
-
"offset":
|
|
84297
|
+
"offset": 6519,
|
|
84305
84298
|
"length": 1,
|
|
84306
84299
|
"value": "0"
|
|
84307
84300
|
},
|
|
84308
84301
|
{
|
|
84309
84302
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84310
84303
|
"kind": "BooleanLiteral",
|
|
84311
|
-
"offset":
|
|
84304
|
+
"offset": 6561,
|
|
84312
84305
|
"length": 5,
|
|
84313
84306
|
"value": "false"
|
|
84314
84307
|
},
|
|
@@ -84322,105 +84315,105 @@
|
|
|
84322
84315
|
{
|
|
84323
84316
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84324
84317
|
"kind": "StringLiteral",
|
|
84325
|
-
"offset":
|
|
84318
|
+
"offset": 6873,
|
|
84326
84319
|
"length": 2,
|
|
84327
84320
|
"value": "\"\""
|
|
84328
84321
|
},
|
|
84329
84322
|
{
|
|
84330
84323
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84331
84324
|
"kind": "StringLiteral",
|
|
84332
|
-
"offset":
|
|
84325
|
+
"offset": 6903,
|
|
84333
84326
|
"length": 2,
|
|
84334
84327
|
"value": "\"\""
|
|
84335
84328
|
},
|
|
84336
84329
|
{
|
|
84337
84330
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84338
84331
|
"kind": "StringLiteral",
|
|
84339
|
-
"offset":
|
|
84332
|
+
"offset": 7274,
|
|
84340
84333
|
"length": 2,
|
|
84341
84334
|
"value": "\"\""
|
|
84342
84335
|
},
|
|
84343
84336
|
{
|
|
84344
84337
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84345
84338
|
"kind": "IntegerLiteral",
|
|
84346
|
-
"offset":
|
|
84339
|
+
"offset": 7314,
|
|
84347
84340
|
"length": 1,
|
|
84348
84341
|
"value": "0"
|
|
84349
84342
|
},
|
|
84350
84343
|
{
|
|
84351
84344
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84352
84345
|
"kind": "IntegerLiteral",
|
|
84353
|
-
"offset":
|
|
84346
|
+
"offset": 7338,
|
|
84354
84347
|
"length": 1,
|
|
84355
84348
|
"value": "0"
|
|
84356
84349
|
},
|
|
84357
84350
|
{
|
|
84358
84351
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84359
84352
|
"kind": "StringLiteral",
|
|
84360
|
-
"offset":
|
|
84353
|
+
"offset": 7364,
|
|
84361
84354
|
"length": 2,
|
|
84362
84355
|
"value": "\"\""
|
|
84363
84356
|
},
|
|
84364
84357
|
{
|
|
84365
84358
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84366
84359
|
"kind": "StringLiteral",
|
|
84367
|
-
"offset":
|
|
84360
|
+
"offset": 7403,
|
|
84368
84361
|
"length": 12,
|
|
84369
84362
|
"value": "\"dd\/MM\/yyyy\""
|
|
84370
84363
|
},
|
|
84371
84364
|
{
|
|
84372
84365
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84373
84366
|
"kind": "BooleanLiteral",
|
|
84374
|
-
"offset":
|
|
84367
|
+
"offset": 7458,
|
|
84375
84368
|
"length": 5,
|
|
84376
84369
|
"value": "false"
|
|
84377
84370
|
},
|
|
84378
84371
|
{
|
|
84379
84372
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84380
84373
|
"kind": "IntegerLiteral",
|
|
84381
|
-
"offset":
|
|
84374
|
+
"offset": 7779,
|
|
84382
84375
|
"length": 1,
|
|
84383
84376
|
"value": "0"
|
|
84384
84377
|
},
|
|
84385
84378
|
{
|
|
84386
84379
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84387
84380
|
"kind": "IntegerLiteral",
|
|
84388
|
-
"offset":
|
|
84381
|
+
"offset": 7824,
|
|
84389
84382
|
"length": 1,
|
|
84390
84383
|
"value": "2"
|
|
84391
84384
|
},
|
|
84392
84385
|
{
|
|
84393
84386
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84394
84387
|
"kind": "BooleanLiteral",
|
|
84395
|
-
"offset":
|
|
84388
|
+
"offset": 7648,
|
|
84396
84389
|
"length": 4,
|
|
84397
84390
|
"value": "true"
|
|
84398
84391
|
},
|
|
84399
84392
|
{
|
|
84400
84393
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84401
84394
|
"kind": "StringLiteral",
|
|
84402
|
-
"offset":
|
|
84395
|
+
"offset": 8443,
|
|
84403
84396
|
"length": 9,
|
|
84404
84397
|
"value": "\"session\""
|
|
84405
84398
|
},
|
|
84406
84399
|
{
|
|
84407
84400
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84408
84401
|
"kind": "Array",
|
|
84409
|
-
"offset":
|
|
84402
|
+
"offset": 9407,
|
|
84410
84403
|
"length": 2,
|
|
84411
84404
|
"value": "[]"
|
|
84412
84405
|
},
|
|
84413
84406
|
{
|
|
84414
84407
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84415
84408
|
"kind": "BooleanLiteral",
|
|
84416
|
-
"offset":
|
|
84409
|
+
"offset": 84689,
|
|
84417
84410
|
"length": 4,
|
|
84418
84411
|
"value": "true"
|
|
84419
84412
|
},
|
|
84420
84413
|
{
|
|
84421
84414
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84422
84415
|
"kind": "BooleanLiteral",
|
|
84423
|
-
"offset":
|
|
84416
|
+
"offset": 103956,
|
|
84424
84417
|
"length": 4,
|
|
84425
84418
|
"value": "true"
|
|
84426
84419
|
},
|
|
Binary file
|
|
Binary file
|
|
@@ -82768,14 +82768,14 @@
|
|
|
82768
82768
|
{
|
|
82769
82769
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/MainInteractor\/InfilectSDKCameraActivityForResult.swift",
|
|
82770
82770
|
"kind": "BooleanLiteral",
|
|
82771
|
-
"offset":
|
|
82771
|
+
"offset": 13151,
|
|
82772
82772
|
"length": 5,
|
|
82773
82773
|
"value": "false"
|
|
82774
82774
|
},
|
|
82775
82775
|
{
|
|
82776
82776
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/MainInteractor\/InfilectSDKCameraActivityForResult.swift",
|
|
82777
82777
|
"kind": "BooleanLiteral",
|
|
82778
|
-
"offset":
|
|
82778
|
+
"offset": 13228,
|
|
82779
82779
|
"length": 5,
|
|
82780
82780
|
"value": "false"
|
|
82781
82781
|
},
|
|
@@ -84284,31 +84284,24 @@
|
|
|
84284
84284
|
"length": 2,
|
|
84285
84285
|
"value": "\"\""
|
|
84286
84286
|
},
|
|
84287
|
-
{
|
|
84288
|
-
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84289
|
-
"kind": "BooleanLiteral",
|
|
84290
|
-
"offset": 6341,
|
|
84291
|
-
"length": 4,
|
|
84292
|
-
"value": "true"
|
|
84293
|
-
},
|
|
84294
84287
|
{
|
|
84295
84288
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84296
84289
|
"kind": "IntegerLiteral",
|
|
84297
|
-
"offset":
|
|
84290
|
+
"offset": 6385,
|
|
84298
84291
|
"length": 1,
|
|
84299
84292
|
"value": "0"
|
|
84300
84293
|
},
|
|
84301
84294
|
{
|
|
84302
84295
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84303
84296
|
"kind": "IntegerLiteral",
|
|
84304
|
-
"offset":
|
|
84297
|
+
"offset": 6519,
|
|
84305
84298
|
"length": 1,
|
|
84306
84299
|
"value": "0"
|
|
84307
84300
|
},
|
|
84308
84301
|
{
|
|
84309
84302
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84310
84303
|
"kind": "BooleanLiteral",
|
|
84311
|
-
"offset":
|
|
84304
|
+
"offset": 6561,
|
|
84312
84305
|
"length": 5,
|
|
84313
84306
|
"value": "false"
|
|
84314
84307
|
},
|
|
@@ -84322,105 +84315,105 @@
|
|
|
84322
84315
|
{
|
|
84323
84316
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84324
84317
|
"kind": "StringLiteral",
|
|
84325
|
-
"offset":
|
|
84318
|
+
"offset": 6873,
|
|
84326
84319
|
"length": 2,
|
|
84327
84320
|
"value": "\"\""
|
|
84328
84321
|
},
|
|
84329
84322
|
{
|
|
84330
84323
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84331
84324
|
"kind": "StringLiteral",
|
|
84332
|
-
"offset":
|
|
84325
|
+
"offset": 6903,
|
|
84333
84326
|
"length": 2,
|
|
84334
84327
|
"value": "\"\""
|
|
84335
84328
|
},
|
|
84336
84329
|
{
|
|
84337
84330
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84338
84331
|
"kind": "StringLiteral",
|
|
84339
|
-
"offset":
|
|
84332
|
+
"offset": 7274,
|
|
84340
84333
|
"length": 2,
|
|
84341
84334
|
"value": "\"\""
|
|
84342
84335
|
},
|
|
84343
84336
|
{
|
|
84344
84337
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84345
84338
|
"kind": "IntegerLiteral",
|
|
84346
|
-
"offset":
|
|
84339
|
+
"offset": 7314,
|
|
84347
84340
|
"length": 1,
|
|
84348
84341
|
"value": "0"
|
|
84349
84342
|
},
|
|
84350
84343
|
{
|
|
84351
84344
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84352
84345
|
"kind": "IntegerLiteral",
|
|
84353
|
-
"offset":
|
|
84346
|
+
"offset": 7338,
|
|
84354
84347
|
"length": 1,
|
|
84355
84348
|
"value": "0"
|
|
84356
84349
|
},
|
|
84357
84350
|
{
|
|
84358
84351
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84359
84352
|
"kind": "StringLiteral",
|
|
84360
|
-
"offset":
|
|
84353
|
+
"offset": 7364,
|
|
84361
84354
|
"length": 2,
|
|
84362
84355
|
"value": "\"\""
|
|
84363
84356
|
},
|
|
84364
84357
|
{
|
|
84365
84358
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84366
84359
|
"kind": "StringLiteral",
|
|
84367
|
-
"offset":
|
|
84360
|
+
"offset": 7403,
|
|
84368
84361
|
"length": 12,
|
|
84369
84362
|
"value": "\"dd\/MM\/yyyy\""
|
|
84370
84363
|
},
|
|
84371
84364
|
{
|
|
84372
84365
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84373
84366
|
"kind": "BooleanLiteral",
|
|
84374
|
-
"offset":
|
|
84367
|
+
"offset": 7458,
|
|
84375
84368
|
"length": 5,
|
|
84376
84369
|
"value": "false"
|
|
84377
84370
|
},
|
|
84378
84371
|
{
|
|
84379
84372
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84380
84373
|
"kind": "IntegerLiteral",
|
|
84381
|
-
"offset":
|
|
84374
|
+
"offset": 7779,
|
|
84382
84375
|
"length": 1,
|
|
84383
84376
|
"value": "0"
|
|
84384
84377
|
},
|
|
84385
84378
|
{
|
|
84386
84379
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84387
84380
|
"kind": "IntegerLiteral",
|
|
84388
|
-
"offset":
|
|
84381
|
+
"offset": 7824,
|
|
84389
84382
|
"length": 1,
|
|
84390
84383
|
"value": "2"
|
|
84391
84384
|
},
|
|
84392
84385
|
{
|
|
84393
84386
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84394
84387
|
"kind": "BooleanLiteral",
|
|
84395
|
-
"offset":
|
|
84388
|
+
"offset": 7648,
|
|
84396
84389
|
"length": 4,
|
|
84397
84390
|
"value": "true"
|
|
84398
84391
|
},
|
|
84399
84392
|
{
|
|
84400
84393
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84401
84394
|
"kind": "StringLiteral",
|
|
84402
|
-
"offset":
|
|
84395
|
+
"offset": 8443,
|
|
84403
84396
|
"length": 9,
|
|
84404
84397
|
"value": "\"session\""
|
|
84405
84398
|
},
|
|
84406
84399
|
{
|
|
84407
84400
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84408
84401
|
"kind": "Array",
|
|
84409
|
-
"offset":
|
|
84402
|
+
"offset": 9407,
|
|
84410
84403
|
"length": 2,
|
|
84411
84404
|
"value": "[]"
|
|
84412
84405
|
},
|
|
84413
84406
|
{
|
|
84414
84407
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84415
84408
|
"kind": "BooleanLiteral",
|
|
84416
|
-
"offset":
|
|
84409
|
+
"offset": 84689,
|
|
84417
84410
|
"length": 4,
|
|
84418
84411
|
"value": "true"
|
|
84419
84412
|
},
|
|
84420
84413
|
{
|
|
84421
84414
|
"filePath": "\/Users\/manish\/Documents\/Workspace\/infiviz-shots-common-ios\/Module\/Camera\/Controller\/MainView\/CameraViewController.swift",
|
|
84422
84415
|
"kind": "BooleanLiteral",
|
|
84423
|
-
"offset":
|
|
84416
|
+
"offset": 103956,
|
|
84424
84417
|
"length": 4,
|
|
84425
84418
|
"value": "true"
|
|
84426
84419
|
},
|