@saltware/fidbek-react-native 0.1.0

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.
Files changed (44) hide show
  1. package/README.md +181 -0
  2. package/android/build.gradle +75 -0
  3. package/android/libs/fidbek-android.aar +0 -0
  4. package/android/src/main/AndroidManifest.xml +1 -0
  5. package/android/src/main/java/com/fidbek/reactnative/FidbekBridge.kt +39 -0
  6. package/android/src/newarch/com/fidbek/reactnative/FidbekReactNativeModule.kt +28 -0
  7. package/android/src/newarch/com/fidbek/reactnative/FidbekReactNativePackage.kt +82 -0
  8. package/app.plugin.js +5 -0
  9. package/fidbek-react-native.podspec +30 -0
  10. package/ios/FidbekReactNative.h +10 -0
  11. package/ios/FidbekReactNative.mm +57 -0
  12. package/ios/FidbekReactNativeBridge.swift +20 -0
  13. package/ios/FidbekSDK.xcframework/Info.plist +44 -0
  14. package/ios/FidbekSDK.xcframework/ios-arm64/FidbekSDK.framework/FidbekSDK +0 -0
  15. package/ios/FidbekSDK.xcframework/ios-arm64/FidbekSDK.framework/Info.plist +0 -0
  16. package/ios/FidbekSDK.xcframework/ios-arm64/FidbekSDK.framework/Modules/FidbekSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo +0 -0
  17. package/ios/FidbekSDK.xcframework/ios-arm64/FidbekSDK.framework/Modules/FidbekSDK.swiftmodule/arm64-apple-ios.abi.json +805 -0
  18. package/ios/FidbekSDK.xcframework/ios-arm64/FidbekSDK.framework/Modules/FidbekSDK.swiftmodule/arm64-apple-ios.package.swiftinterface +26 -0
  19. package/ios/FidbekSDK.xcframework/ios-arm64/FidbekSDK.framework/Modules/FidbekSDK.swiftmodule/arm64-apple-ios.private.swiftinterface +26 -0
  20. package/ios/FidbekSDK.xcframework/ios-arm64/FidbekSDK.framework/Modules/FidbekSDK.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
  21. package/ios/FidbekSDK.xcframework/ios-arm64/FidbekSDK.framework/Modules/FidbekSDK.swiftmodule/arm64-apple-ios.swiftinterface +26 -0
  22. package/ios/FidbekSDK.xcframework/ios-arm64/FidbekSDK.framework/Modules/module.modulemap +4 -0
  23. package/ios/FidbekSDK.xcframework/ios-arm64_x86_64-simulator/FidbekSDK.framework/FidbekSDK +0 -0
  24. package/ios/FidbekSDK.xcframework/ios-arm64_x86_64-simulator/FidbekSDK.framework/Info.plist +0 -0
  25. package/ios/FidbekSDK.xcframework/ios-arm64_x86_64-simulator/FidbekSDK.framework/Modules/FidbekSDK.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo +0 -0
  26. package/ios/FidbekSDK.xcframework/ios-arm64_x86_64-simulator/FidbekSDK.framework/Modules/FidbekSDK.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo +0 -0
  27. package/ios/FidbekSDK.xcframework/ios-arm64_x86_64-simulator/FidbekSDK.framework/Modules/FidbekSDK.swiftmodule/arm64-apple-ios-simulator.abi.json +805 -0
  28. package/ios/FidbekSDK.xcframework/ios-arm64_x86_64-simulator/FidbekSDK.framework/Modules/FidbekSDK.swiftmodule/arm64-apple-ios-simulator.package.swiftinterface +26 -0
  29. package/ios/FidbekSDK.xcframework/ios-arm64_x86_64-simulator/FidbekSDK.framework/Modules/FidbekSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +26 -0
  30. package/ios/FidbekSDK.xcframework/ios-arm64_x86_64-simulator/FidbekSDK.framework/Modules/FidbekSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
  31. package/ios/FidbekSDK.xcframework/ios-arm64_x86_64-simulator/FidbekSDK.framework/Modules/FidbekSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface +26 -0
  32. package/ios/FidbekSDK.xcframework/ios-arm64_x86_64-simulator/FidbekSDK.framework/Modules/FidbekSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json +805 -0
  33. package/ios/FidbekSDK.xcframework/ios-arm64_x86_64-simulator/FidbekSDK.framework/Modules/FidbekSDK.swiftmodule/x86_64-apple-ios-simulator.package.swiftinterface +26 -0
  34. package/ios/FidbekSDK.xcframework/ios-arm64_x86_64-simulator/FidbekSDK.framework/Modules/FidbekSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +26 -0
  35. package/ios/FidbekSDK.xcframework/ios-arm64_x86_64-simulator/FidbekSDK.framework/Modules/FidbekSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
  36. package/ios/FidbekSDK.xcframework/ios-arm64_x86_64-simulator/FidbekSDK.framework/Modules/FidbekSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +26 -0
  37. package/ios/FidbekSDK.xcframework/ios-arm64_x86_64-simulator/FidbekSDK.framework/Modules/module.modulemap +4 -0
  38. package/ios/FidbekSDK.xcframework/ios-arm64_x86_64-simulator/FidbekSDK.framework/_CodeSignature/CodeResources +101 -0
  39. package/package.json +53 -0
  40. package/react-native.config.js +11 -0
  41. package/src/NativeFidbekReactNative.ts +10 -0
  42. package/src/NativeFidbekReactNativeModule.js +3 -0
  43. package/src/index.d.ts +17 -0
  44. package/src/index.js +35 -0
@@ -0,0 +1,805 @@
1
+ {
2
+ "ABIRoot": {
3
+ "kind": "Root",
4
+ "name": "FidbekSDK",
5
+ "printedName": "FidbekSDK",
6
+ "children": [
7
+ {
8
+ "kind": "Import",
9
+ "name": "UIKit",
10
+ "printedName": "UIKit",
11
+ "declKind": "Import",
12
+ "moduleName": "FidbekSDK"
13
+ },
14
+ {
15
+ "kind": "Import",
16
+ "name": "os",
17
+ "printedName": "os",
18
+ "declKind": "Import",
19
+ "moduleName": "FidbekSDK"
20
+ },
21
+ {
22
+ "kind": "TypeDecl",
23
+ "name": "Fidbek",
24
+ "printedName": "Fidbek",
25
+ "children": [
26
+ {
27
+ "kind": "Var",
28
+ "name": "shared",
29
+ "printedName": "shared",
30
+ "children": [
31
+ {
32
+ "kind": "TypeNominal",
33
+ "name": "Fidbek",
34
+ "printedName": "FidbekSDK.Fidbek",
35
+ "usr": "s:9FidbekSDK0A0C"
36
+ }
37
+ ],
38
+ "declKind": "Var",
39
+ "usr": "s:9FidbekSDK0A0C6sharedACvpZ",
40
+ "mangledName": "$s9FidbekSDK0A0C6sharedACvpZ",
41
+ "moduleName": "FidbekSDK",
42
+ "static": true,
43
+ "declAttributes": [
44
+ "HasInitialValue",
45
+ "Final",
46
+ "HasStorage",
47
+ "AccessControl"
48
+ ],
49
+ "isLet": true,
50
+ "hasStorage": true,
51
+ "accessors": [
52
+ {
53
+ "kind": "Accessor",
54
+ "name": "Get",
55
+ "printedName": "Get()",
56
+ "children": [
57
+ {
58
+ "kind": "TypeNominal",
59
+ "name": "Fidbek",
60
+ "printedName": "FidbekSDK.Fidbek",
61
+ "usr": "s:9FidbekSDK0A0C"
62
+ }
63
+ ],
64
+ "declKind": "Accessor",
65
+ "usr": "s:9FidbekSDK0A0C6sharedACvgZ",
66
+ "mangledName": "$s9FidbekSDK0A0C6sharedACvgZ",
67
+ "moduleName": "FidbekSDK",
68
+ "static": true,
69
+ "implicit": true,
70
+ "declAttributes": [
71
+ "Final"
72
+ ],
73
+ "accessorKind": "get"
74
+ }
75
+ ]
76
+ },
77
+ {
78
+ "kind": "Function",
79
+ "name": "configure",
80
+ "printedName": "configure(_:)",
81
+ "children": [
82
+ {
83
+ "kind": "TypeNominal",
84
+ "name": "Void",
85
+ "printedName": "()"
86
+ },
87
+ {
88
+ "kind": "TypeNominal",
89
+ "name": "FidbekConfiguration",
90
+ "printedName": "FidbekSDK.FidbekConfiguration",
91
+ "usr": "s:9FidbekSDK0A13ConfigurationV"
92
+ }
93
+ ],
94
+ "declKind": "Func",
95
+ "usr": "s:9FidbekSDK0A0C9configureyyAA0A13ConfigurationVF",
96
+ "mangledName": "$s9FidbekSDK0A0C9configureyyAA0A13ConfigurationVF",
97
+ "moduleName": "FidbekSDK",
98
+ "declAttributes": [
99
+ "Final",
100
+ "AccessControl"
101
+ ],
102
+ "funcSelfKind": "NonMutating"
103
+ },
104
+ {
105
+ "kind": "Function",
106
+ "name": "configure",
107
+ "printedName": "configure(token:shakeToOpenEnabled:)",
108
+ "children": [
109
+ {
110
+ "kind": "TypeNominal",
111
+ "name": "Void",
112
+ "printedName": "()"
113
+ },
114
+ {
115
+ "kind": "TypeNominal",
116
+ "name": "String",
117
+ "printedName": "Swift.String",
118
+ "usr": "s:SS"
119
+ },
120
+ {
121
+ "kind": "TypeNominal",
122
+ "name": "Bool",
123
+ "printedName": "Swift.Bool",
124
+ "hasDefaultArg": true,
125
+ "usr": "s:Sb"
126
+ }
127
+ ],
128
+ "declKind": "Func",
129
+ "usr": "s:9FidbekSDK0A0C9configure5token18shakeToOpenEnabledySS_SbtF",
130
+ "mangledName": "$s9FidbekSDK0A0C9configure5token18shakeToOpenEnabledySS_SbtF",
131
+ "moduleName": "FidbekSDK",
132
+ "declAttributes": [
133
+ "Final",
134
+ "AccessControl"
135
+ ],
136
+ "funcSelfKind": "NonMutating"
137
+ },
138
+ {
139
+ "kind": "Function",
140
+ "name": "present",
141
+ "printedName": "present()",
142
+ "children": [
143
+ {
144
+ "kind": "TypeNominal",
145
+ "name": "Void",
146
+ "printedName": "()"
147
+ }
148
+ ],
149
+ "declKind": "Func",
150
+ "usr": "s:9FidbekSDK0A0C7presentyyF",
151
+ "mangledName": "$s9FidbekSDK0A0C7presentyyF",
152
+ "moduleName": "FidbekSDK",
153
+ "declAttributes": [
154
+ "Final",
155
+ "AccessControl"
156
+ ],
157
+ "funcSelfKind": "NonMutating"
158
+ },
159
+ {
160
+ "kind": "Function",
161
+ "name": "stop",
162
+ "printedName": "stop()",
163
+ "children": [
164
+ {
165
+ "kind": "TypeNominal",
166
+ "name": "Void",
167
+ "printedName": "()"
168
+ }
169
+ ],
170
+ "declKind": "Func",
171
+ "usr": "s:9FidbekSDK0A0C4stopyyF",
172
+ "mangledName": "$s9FidbekSDK0A0C4stopyyF",
173
+ "moduleName": "FidbekSDK",
174
+ "declAttributes": [
175
+ "Final",
176
+ "AccessControl"
177
+ ],
178
+ "funcSelfKind": "NonMutating"
179
+ }
180
+ ],
181
+ "declKind": "Class",
182
+ "usr": "s:9FidbekSDK0A0C",
183
+ "mangledName": "$s9FidbekSDK0A0C",
184
+ "moduleName": "FidbekSDK",
185
+ "declAttributes": [
186
+ "Final",
187
+ "AccessControl"
188
+ ],
189
+ "hasMissingDesignatedInitializers": true,
190
+ "conformances": [
191
+ {
192
+ "kind": "Conformance",
193
+ "name": "Copyable",
194
+ "printedName": "Copyable",
195
+ "usr": "s:s8CopyableP",
196
+ "mangledName": "$ss8CopyableP"
197
+ },
198
+ {
199
+ "kind": "Conformance",
200
+ "name": "Escapable",
201
+ "printedName": "Escapable",
202
+ "usr": "s:s9EscapableP",
203
+ "mangledName": "$ss9EscapableP"
204
+ }
205
+ ]
206
+ },
207
+ {
208
+ "kind": "Import",
209
+ "name": "Foundation",
210
+ "printedName": "Foundation",
211
+ "declKind": "Import",
212
+ "moduleName": "FidbekSDK"
213
+ },
214
+ {
215
+ "kind": "TypeDecl",
216
+ "name": "FidbekConfiguration",
217
+ "printedName": "FidbekConfiguration",
218
+ "children": [
219
+ {
220
+ "kind": "Var",
221
+ "name": "token",
222
+ "printedName": "token",
223
+ "children": [
224
+ {
225
+ "kind": "TypeNominal",
226
+ "name": "String",
227
+ "printedName": "Swift.String",
228
+ "usr": "s:SS"
229
+ }
230
+ ],
231
+ "declKind": "Var",
232
+ "usr": "s:9FidbekSDK0A13ConfigurationV5tokenSSvp",
233
+ "mangledName": "$s9FidbekSDK0A13ConfigurationV5tokenSSvp",
234
+ "moduleName": "FidbekSDK",
235
+ "declAttributes": [
236
+ "HasStorage",
237
+ "AccessControl"
238
+ ],
239
+ "isLet": true,
240
+ "hasStorage": true,
241
+ "accessors": [
242
+ {
243
+ "kind": "Accessor",
244
+ "name": "Get",
245
+ "printedName": "Get()",
246
+ "children": [
247
+ {
248
+ "kind": "TypeNominal",
249
+ "name": "String",
250
+ "printedName": "Swift.String",
251
+ "usr": "s:SS"
252
+ }
253
+ ],
254
+ "declKind": "Accessor",
255
+ "usr": "s:9FidbekSDK0A13ConfigurationV5tokenSSvg",
256
+ "mangledName": "$s9FidbekSDK0A13ConfigurationV5tokenSSvg",
257
+ "moduleName": "FidbekSDK",
258
+ "implicit": true,
259
+ "accessorKind": "get"
260
+ }
261
+ ]
262
+ },
263
+ {
264
+ "kind": "Var",
265
+ "name": "shakeToOpenEnabled",
266
+ "printedName": "shakeToOpenEnabled",
267
+ "children": [
268
+ {
269
+ "kind": "TypeNominal",
270
+ "name": "Bool",
271
+ "printedName": "Swift.Bool",
272
+ "usr": "s:Sb"
273
+ }
274
+ ],
275
+ "declKind": "Var",
276
+ "usr": "s:9FidbekSDK0A13ConfigurationV18shakeToOpenEnabledSbvp",
277
+ "mangledName": "$s9FidbekSDK0A13ConfigurationV18shakeToOpenEnabledSbvp",
278
+ "moduleName": "FidbekSDK",
279
+ "declAttributes": [
280
+ "HasStorage",
281
+ "AccessControl"
282
+ ],
283
+ "isLet": true,
284
+ "hasStorage": true,
285
+ "accessors": [
286
+ {
287
+ "kind": "Accessor",
288
+ "name": "Get",
289
+ "printedName": "Get()",
290
+ "children": [
291
+ {
292
+ "kind": "TypeNominal",
293
+ "name": "Bool",
294
+ "printedName": "Swift.Bool",
295
+ "usr": "s:Sb"
296
+ }
297
+ ],
298
+ "declKind": "Accessor",
299
+ "usr": "s:9FidbekSDK0A13ConfigurationV18shakeToOpenEnabledSbvg",
300
+ "mangledName": "$s9FidbekSDK0A13ConfigurationV18shakeToOpenEnabledSbvg",
301
+ "moduleName": "FidbekSDK",
302
+ "implicit": true,
303
+ "accessorKind": "get"
304
+ }
305
+ ]
306
+ },
307
+ {
308
+ "kind": "Constructor",
309
+ "name": "init",
310
+ "printedName": "init(token:shakeToOpenEnabled:)",
311
+ "children": [
312
+ {
313
+ "kind": "TypeNominal",
314
+ "name": "FidbekConfiguration",
315
+ "printedName": "FidbekSDK.FidbekConfiguration",
316
+ "usr": "s:9FidbekSDK0A13ConfigurationV"
317
+ },
318
+ {
319
+ "kind": "TypeNominal",
320
+ "name": "String",
321
+ "printedName": "Swift.String",
322
+ "usr": "s:SS"
323
+ },
324
+ {
325
+ "kind": "TypeNominal",
326
+ "name": "Bool",
327
+ "printedName": "Swift.Bool",
328
+ "hasDefaultArg": true,
329
+ "usr": "s:Sb"
330
+ }
331
+ ],
332
+ "declKind": "Constructor",
333
+ "usr": "s:9FidbekSDK0A13ConfigurationV5token18shakeToOpenEnabledACSS_Sbtcfc",
334
+ "mangledName": "$s9FidbekSDK0A13ConfigurationV5token18shakeToOpenEnabledACSS_Sbtcfc",
335
+ "moduleName": "FidbekSDK",
336
+ "declAttributes": [
337
+ "AccessControl"
338
+ ],
339
+ "init_kind": "Designated"
340
+ }
341
+ ],
342
+ "declKind": "Struct",
343
+ "usr": "s:9FidbekSDK0A13ConfigurationV",
344
+ "mangledName": "$s9FidbekSDK0A13ConfigurationV",
345
+ "moduleName": "FidbekSDK",
346
+ "declAttributes": [
347
+ "AccessControl"
348
+ ],
349
+ "conformances": [
350
+ {
351
+ "kind": "Conformance",
352
+ "name": "Copyable",
353
+ "printedName": "Copyable",
354
+ "usr": "s:s8CopyableP",
355
+ "mangledName": "$ss8CopyableP"
356
+ },
357
+ {
358
+ "kind": "Conformance",
359
+ "name": "Escapable",
360
+ "printedName": "Escapable",
361
+ "usr": "s:s9EscapableP",
362
+ "mangledName": "$ss9EscapableP"
363
+ }
364
+ ]
365
+ },
366
+ {
367
+ "kind": "Import",
368
+ "name": "Foundation",
369
+ "printedName": "Foundation",
370
+ "declKind": "Import",
371
+ "moduleName": "FidbekSDK"
372
+ },
373
+ {
374
+ "kind": "Import",
375
+ "name": "UIKit",
376
+ "printedName": "UIKit",
377
+ "declKind": "Import",
378
+ "moduleName": "FidbekSDK"
379
+ },
380
+ {
381
+ "kind": "Import",
382
+ "name": "Foundation",
383
+ "printedName": "Foundation",
384
+ "declKind": "Import",
385
+ "moduleName": "FidbekSDK"
386
+ },
387
+ {
388
+ "kind": "Import",
389
+ "name": "Foundation",
390
+ "printedName": "Foundation",
391
+ "declKind": "Import",
392
+ "moduleName": "FidbekSDK"
393
+ },
394
+ {
395
+ "kind": "Import",
396
+ "name": "UIKit",
397
+ "printedName": "UIKit",
398
+ "declKind": "Import",
399
+ "moduleName": "FidbekSDK"
400
+ },
401
+ {
402
+ "kind": "Import",
403
+ "name": "UIKit",
404
+ "printedName": "UIKit",
405
+ "declKind": "Import",
406
+ "moduleName": "FidbekSDK"
407
+ },
408
+ {
409
+ "kind": "Import",
410
+ "name": "UIKit",
411
+ "printedName": "UIKit",
412
+ "declKind": "Import",
413
+ "moduleName": "FidbekSDK"
414
+ },
415
+ {
416
+ "kind": "Import",
417
+ "name": "UIKit",
418
+ "printedName": "UIKit",
419
+ "declKind": "Import",
420
+ "moduleName": "FidbekSDK"
421
+ },
422
+ {
423
+ "kind": "Import",
424
+ "name": "PencilKit",
425
+ "printedName": "PencilKit",
426
+ "declKind": "Import",
427
+ "moduleName": "FidbekSDK"
428
+ },
429
+ {
430
+ "kind": "Import",
431
+ "name": "CoreMotion",
432
+ "printedName": "CoreMotion",
433
+ "declKind": "Import",
434
+ "moduleName": "FidbekSDK"
435
+ },
436
+ {
437
+ "kind": "Import",
438
+ "name": "Foundation",
439
+ "printedName": "Foundation",
440
+ "declKind": "Import",
441
+ "moduleName": "FidbekSDK"
442
+ },
443
+ {
444
+ "kind": "Import",
445
+ "name": "os",
446
+ "printedName": "os",
447
+ "declKind": "Import",
448
+ "moduleName": "FidbekSDK"
449
+ }
450
+ ],
451
+ "json_format_version": 8
452
+ },
453
+ "ConstValues": [
454
+ {
455
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Fidbek.swift",
456
+ "kind": "StringLiteral",
457
+ "offset": 135,
458
+ "length": 16,
459
+ "value": "\"com.fidbek.sdk\""
460
+ },
461
+ {
462
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Fidbek.swift",
463
+ "kind": "StringLiteral",
464
+ "offset": 163,
465
+ "length": 8,
466
+ "value": "\"Fidbek\""
467
+ },
468
+ {
469
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Fidbek.swift",
470
+ "kind": "BooleanLiteral",
471
+ "offset": 349,
472
+ "length": 5,
473
+ "value": "false"
474
+ },
475
+ {
476
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Fidbek.swift",
477
+ "kind": "BooleanLiteral",
478
+ "offset": 1036,
479
+ "length": 4,
480
+ "value": "true"
481
+ },
482
+ {
483
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/FidbekConfiguration.swift",
484
+ "kind": "BooleanLiteral",
485
+ "offset": 200,
486
+ "length": 4,
487
+ "value": "true"
488
+ },
489
+ {
490
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/Device\/DeviceInfoProvider.swift",
491
+ "kind": "StringLiteral",
492
+ "offset": 435,
493
+ "length": 9,
494
+ "value": "\"os_name\""
495
+ },
496
+ {
497
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/Device\/DeviceInfoProvider.swift",
498
+ "kind": "StringLiteral",
499
+ "offset": 470,
500
+ "length": 12,
501
+ "value": "\"os_version\""
502
+ },
503
+ {
504
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/Device\/DeviceInfoProvider.swift",
505
+ "kind": "StringLiteral",
506
+ "offset": 527,
507
+ "length": 11,
508
+ "value": "\"time_zone\""
509
+ },
510
+ {
511
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/Device\/DeviceInfoProvider.swift",
512
+ "kind": "StringLiteral",
513
+ "offset": 566,
514
+ "length": 14,
515
+ "value": "\"screen_width\""
516
+ },
517
+ {
518
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/Device\/DeviceInfoProvider.swift",
519
+ "kind": "StringLiteral",
520
+ "offset": 609,
521
+ "length": 15,
522
+ "value": "\"screen_height\""
523
+ },
524
+ {
525
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/Device\/DeviceInfoProvider.swift",
526
+ "kind": "StringLiteral",
527
+ "offset": 655,
528
+ "length": 17,
529
+ "value": "\"interface_style\""
530
+ },
531
+ {
532
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/Device\/DeviceInfoProvider.swift",
533
+ "kind": "StringLiteral",
534
+ "offset": 708,
535
+ "length": 23,
536
+ "value": "\"identifier_for_vendor\""
537
+ },
538
+ {
539
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/Device\/DeviceInfoProvider.swift",
540
+ "kind": "StringLiteral",
541
+ "offset": 906,
542
+ "length": 11,
543
+ "value": "\"bundle_id\""
544
+ },
545
+ {
546
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/Model\/FeedbackReportPayload.swift",
547
+ "kind": "StringLiteral",
548
+ "offset": 461,
549
+ "length": 19,
550
+ "value": "\"screenshot_base64\""
551
+ },
552
+ {
553
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/Model\/FeedbackReportPayload.swift",
554
+ "kind": "StringLiteral",
555
+ "offset": 544,
556
+ "length": 13,
557
+ "value": "\"occurred_at\""
558
+ },
559
+ {
560
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/Network\/ReportClient.swift",
561
+ "kind": "StringLiteral",
562
+ "offset": 498,
563
+ "length": 39,
564
+ "value": "\"https:\/\/api.fidbek.dev\/v1\/sdk\/reports\""
565
+ },
566
+ {
567
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/CategoryDialogViewController.swift",
568
+ "kind": "FloatLiteral",
569
+ "offset": 507,
570
+ "length": 4,
571
+ "value": "0.14"
572
+ },
573
+ {
574
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/CategoryDialogViewController.swift",
575
+ "kind": "FloatLiteral",
576
+ "offset": 520,
577
+ "length": 4,
578
+ "value": "0.15"
579
+ },
580
+ {
581
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/CategoryDialogViewController.swift",
582
+ "kind": "FloatLiteral",
583
+ "offset": 532,
584
+ "length": 4,
585
+ "value": "0.18"
586
+ },
587
+ {
588
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/CategoryDialogViewController.swift",
589
+ "kind": "FloatLiteral",
590
+ "offset": 545,
591
+ "length": 3,
592
+ "value": "1.0"
593
+ },
594
+ {
595
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/CategoryDialogViewController.swift",
596
+ "kind": "FloatLiteral",
597
+ "offset": 693,
598
+ "length": 4,
599
+ "value": "0.20"
600
+ },
601
+ {
602
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/CategoryDialogViewController.swift",
603
+ "kind": "FloatLiteral",
604
+ "offset": 706,
605
+ "length": 4,
606
+ "value": "0.22"
607
+ },
608
+ {
609
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/CategoryDialogViewController.swift",
610
+ "kind": "FloatLiteral",
611
+ "offset": 718,
612
+ "length": 4,
613
+ "value": "0.26"
614
+ },
615
+ {
616
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/CategoryDialogViewController.swift",
617
+ "kind": "FloatLiteral",
618
+ "offset": 731,
619
+ "length": 3,
620
+ "value": "1.0"
621
+ },
622
+ {
623
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/CategoryDialogViewController.swift",
624
+ "kind": "FloatLiteral",
625
+ "offset": 904,
626
+ "length": 4,
627
+ "value": "0.14"
628
+ },
629
+ {
630
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/CategoryDialogViewController.swift",
631
+ "kind": "FloatLiteral",
632
+ "offset": 957,
633
+ "length": 4,
634
+ "value": "0.08"
635
+ },
636
+ {
637
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/CategoryDialogViewController.swift",
638
+ "kind": "FloatLiteral",
639
+ "offset": 1111,
640
+ "length": 4,
641
+ "value": "0.10"
642
+ },
643
+ {
644
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/CategoryDialogViewController.swift",
645
+ "kind": "FloatLiteral",
646
+ "offset": 1164,
647
+ "length": 4,
648
+ "value": "0.06"
649
+ },
650
+ {
651
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/CategoryDialogViewController.swift",
652
+ "kind": "BooleanLiteral",
653
+ "offset": 1331,
654
+ "length": 5,
655
+ "value": "false"
656
+ },
657
+ {
658
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/FeedbackViewController.swift",
659
+ "kind": "FloatLiteral",
660
+ "offset": 81,
661
+ "length": 4,
662
+ "value": "0.12"
663
+ },
664
+ {
665
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/FeedbackViewController.swift",
666
+ "kind": "FloatLiteral",
667
+ "offset": 94,
668
+ "length": 4,
669
+ "value": "0.13"
670
+ },
671
+ {
672
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/FeedbackViewController.swift",
673
+ "kind": "FloatLiteral",
674
+ "offset": 106,
675
+ "length": 4,
676
+ "value": "0.15"
677
+ },
678
+ {
679
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/FeedbackViewController.swift",
680
+ "kind": "FloatLiteral",
681
+ "offset": 119,
682
+ "length": 3,
683
+ "value": "1.0"
684
+ },
685
+ {
686
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/FeedbackViewController.swift",
687
+ "kind": "FloatLiteral",
688
+ "offset": 162,
689
+ "length": 4,
690
+ "value": "0.14"
691
+ },
692
+ {
693
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/FeedbackViewController.swift",
694
+ "kind": "FloatLiteral",
695
+ "offset": 175,
696
+ "length": 4,
697
+ "value": "0.15"
698
+ },
699
+ {
700
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/FeedbackViewController.swift",
701
+ "kind": "FloatLiteral",
702
+ "offset": 187,
703
+ "length": 4,
704
+ "value": "0.17"
705
+ },
706
+ {
707
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/FeedbackViewController.swift",
708
+ "kind": "FloatLiteral",
709
+ "offset": 200,
710
+ "length": 3,
711
+ "value": "1.0"
712
+ },
713
+ {
714
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/FeedbackViewController.swift",
715
+ "kind": "FloatLiteral",
716
+ "offset": 265,
717
+ "length": 4,
718
+ "value": "0.12"
719
+ },
720
+ {
721
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/FeedbackViewController.swift",
722
+ "kind": "FloatLiteral",
723
+ "offset": 378,
724
+ "length": 4,
725
+ "value": "0.55"
726
+ },
727
+ {
728
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/FeedbackViewController.swift",
729
+ "kind": "FloatLiteral",
730
+ "offset": 430,
731
+ "length": 4,
732
+ "value": "0.16"
733
+ },
734
+ {
735
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/FeedbackViewController.swift",
736
+ "kind": "FloatLiteral",
737
+ "offset": 443,
738
+ "length": 4,
739
+ "value": "0.17"
740
+ },
741
+ {
742
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/FeedbackViewController.swift",
743
+ "kind": "FloatLiteral",
744
+ "offset": 455,
745
+ "length": 4,
746
+ "value": "0.20"
747
+ },
748
+ {
749
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/FeedbackViewController.swift",
750
+ "kind": "FloatLiteral",
751
+ "offset": 468,
752
+ "length": 3,
753
+ "value": "1.0"
754
+ },
755
+ {
756
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/FeedbackViewController.swift",
757
+ "kind": "BooleanLiteral",
758
+ "offset": 1559,
759
+ "length": 4,
760
+ "value": "true"
761
+ },
762
+ {
763
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/ScreenshotCapturer.swift",
764
+ "kind": "FloatLiteral",
765
+ "offset": 705,
766
+ "length": 4,
767
+ "value": "0.72"
768
+ },
769
+ {
770
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/ShakeDetector.swift",
771
+ "kind": "StringLiteral",
772
+ "offset": 118,
773
+ "length": 16,
774
+ "value": "\"com.fidbek.sdk\""
775
+ },
776
+ {
777
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/ShakeDetector.swift",
778
+ "kind": "StringLiteral",
779
+ "offset": 146,
780
+ "length": 15,
781
+ "value": "\"ShakeDetector\""
782
+ },
783
+ {
784
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/ShakeDetector.swift",
785
+ "kind": "FloatLiteral",
786
+ "offset": 497,
787
+ "length": 4,
788
+ "value": "1.35"
789
+ },
790
+ {
791
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/ShakeDetector.swift",
792
+ "kind": "FloatLiteral",
793
+ "offset": 543,
794
+ "length": 3,
795
+ "value": "1.2"
796
+ },
797
+ {
798
+ "filePath": "\/Users\/talha\/Desktop\/Fidbek\/source-ios\/Sources\/FidbekSDK\/Internal\/UI\/ShakeDetector.swift",
799
+ "kind": "BooleanLiteral",
800
+ "offset": 575,
801
+ "length": 5,
802
+ "value": "false"
803
+ }
804
+ ]
805
+ }