barkoder-nativescript 1.3.0 → 1.3.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/barkoder-nativescript.android.ts +1092 -813
- package/barkoder-nativescript.ios.ts +1140 -818
- package/package.json +1 -1
- package/platforms/android/README.md +9 -0
- package/platforms/android/barkoder.aar +0 -0
- package/platforms/ios/BarkoderSDK.xcframework/Info.plist +5 -5
- package/platforms/ios/BarkoderSDK.xcframework/ios-arm64/BarkoderSDK.framework/BarkoderSDK +0 -0
- package/platforms/ios/BarkoderSDK.xcframework/ios-arm64/BarkoderSDK.framework/Headers/BarkoderSDK-Swift.h +46 -28
- package/platforms/ios/BarkoderSDK.xcframework/ios-arm64/BarkoderSDK.framework/Info.plist +0 -0
- package/platforms/ios/BarkoderSDK.xcframework/ios-arm64/BarkoderSDK.framework/Modules/BarkoderSDK.swiftmodule/arm64-apple-ios.abi.json +66 -44
- package/platforms/ios/BarkoderSDK.xcframework/ios-arm64/BarkoderSDK.framework/Modules/BarkoderSDK.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/platforms/ios/BarkoderSDK.xcframework/ios-arm64_x86_64-simulator/BarkoderSDK.framework/BarkoderSDK +0 -0
- package/platforms/ios/BarkoderSDK.xcframework/ios-arm64_x86_64-simulator/BarkoderSDK.framework/Headers/BarkoderSDK-Swift.h +92 -56
- package/platforms/ios/BarkoderSDK.xcframework/ios-arm64_x86_64-simulator/BarkoderSDK.framework/Info.plist +0 -0
- package/platforms/ios/BarkoderSDK.xcframework/ios-arm64_x86_64-simulator/BarkoderSDK.framework/Modules/BarkoderSDK.swiftmodule/arm64-apple-ios-simulator.abi.json +66 -44
- package/platforms/ios/BarkoderSDK.xcframework/ios-arm64_x86_64-simulator/BarkoderSDK.framework/Modules/BarkoderSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
- package/platforms/ios/BarkoderSDK.xcframework/ios-arm64_x86_64-simulator/BarkoderSDK.framework/Modules/BarkoderSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json +66 -44
- package/platforms/ios/BarkoderSDK.xcframework/ios-arm64_x86_64-simulator/BarkoderSDK.framework/Modules/BarkoderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
- package/platforms/ios/BarkoderSDK.xcframework/ios-arm64_x86_64-simulator/BarkoderSDK.framework/_CodeSignature/CodeResources +22 -22
- package/README.md +0 -115
package/package.json
CHANGED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Android permissions and dependencies
|
|
2
|
+
|
|
3
|
+
* (Optional) Use AndroidManifest.xml to describe any permissions, features or other configuration specifics required or used by your plugin for Android.
|
|
4
|
+
NOTE: The NativeScript CLI will not resolve any contradicting or duplicate entries during the merge. After the plugin is installed, you need to manually resolve such issues.
|
|
5
|
+
|
|
6
|
+
* (Optional) Use include.gradle configuration to describe any native dependencies. If there are no such, this file can be removed. For more information, see the [include.gradle Specification](http://docs.nativescript.org/plugins/plugins#includegradle-specification)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
[Read more about nativescript plugins](http://docs.nativescript.org/plugins/plugins)
|
|
Binary file
|
|
@@ -8,32 +8,32 @@
|
|
|
8
8
|
<key>BinaryPath</key>
|
|
9
9
|
<string>BarkoderSDK.framework/BarkoderSDK</string>
|
|
10
10
|
<key>LibraryIdentifier</key>
|
|
11
|
-
<string>ios-
|
|
11
|
+
<string>ios-arm64_x86_64-simulator</string>
|
|
12
12
|
<key>LibraryPath</key>
|
|
13
13
|
<string>BarkoderSDK.framework</string>
|
|
14
14
|
<key>SupportedArchitectures</key>
|
|
15
15
|
<array>
|
|
16
16
|
<string>arm64</string>
|
|
17
|
+
<string>x86_64</string>
|
|
17
18
|
</array>
|
|
18
19
|
<key>SupportedPlatform</key>
|
|
19
20
|
<string>ios</string>
|
|
21
|
+
<key>SupportedPlatformVariant</key>
|
|
22
|
+
<string>simulator</string>
|
|
20
23
|
</dict>
|
|
21
24
|
<dict>
|
|
22
25
|
<key>BinaryPath</key>
|
|
23
26
|
<string>BarkoderSDK.framework/BarkoderSDK</string>
|
|
24
27
|
<key>LibraryIdentifier</key>
|
|
25
|
-
<string>ios-
|
|
28
|
+
<string>ios-arm64</string>
|
|
26
29
|
<key>LibraryPath</key>
|
|
27
30
|
<string>BarkoderSDK.framework</string>
|
|
28
31
|
<key>SupportedArchitectures</key>
|
|
29
32
|
<array>
|
|
30
33
|
<string>arm64</string>
|
|
31
|
-
<string>x86_64</string>
|
|
32
34
|
</array>
|
|
33
35
|
<key>SupportedPlatform</key>
|
|
34
36
|
<string>ios</string>
|
|
35
|
-
<key>SupportedPlatformVariant</key>
|
|
36
|
-
<string>simulator</string>
|
|
37
37
|
</dict>
|
|
38
38
|
</array>
|
|
39
39
|
<key>CFBundlePackageType</key>
|
|
Binary file
|
|
@@ -311,55 +311,68 @@ enum BarkoderResolution : NSInteger;
|
|
|
311
311
|
|
|
312
312
|
SWIFT_CLASS("_TtC11BarkoderSDK14BarkoderConfig")
|
|
313
313
|
@interface BarkoderConfig : NSObject
|
|
314
|
-
/// Region of
|
|
314
|
+
/// Retrieves/Sets the color of the lines outlining the Region of Interest (ROI) for barcode scanning on the camera feed
|
|
315
315
|
@property (nonatomic, strong) UIColor * _Nonnull roiLineColor;
|
|
316
|
-
/// Region of
|
|
316
|
+
/// Retrieves/Sets the width of the lines outlining the Region of Interest (ROI) for barcode scanning on the camera feed
|
|
317
|
+
/// note:
|
|
317
318
|
/// Default value is 2.0
|
|
318
319
|
@property (nonatomic) float roiLineWidth;
|
|
319
|
-
/// Region of
|
|
320
|
+
/// Retrieves/Sets the background color of the overlay within the Region of Interest (ROI) for barcode scanning on the camera feed
|
|
320
321
|
@property (nonatomic, strong) UIColor * _Nonnull roiOverlayBackgroundColor;
|
|
321
|
-
///
|
|
322
|
+
/// Retrieves/Sets the visibility of the Region of Interest (ROI) on the camera preview
|
|
323
|
+
/// note:
|
|
322
324
|
/// Default value is true
|
|
323
325
|
@property (nonatomic) BOOL regionOfInterestVisible;
|
|
324
|
-
///
|
|
326
|
+
/// Retrieves/Sets the hexadecimal color code representing the line color used to indicate the location of detected barcodes
|
|
325
327
|
@property (nonatomic, strong) UIColor * _Nonnull locationLineColor;
|
|
326
|
-
///
|
|
328
|
+
/// Retrieves/Sets the width of the lines indicating the location of detected barcodes on the camera feed
|
|
329
|
+
/// note:
|
|
327
330
|
/// Default value is 2
|
|
328
331
|
@property (nonatomic) float locationLineWidth;
|
|
329
|
-
///
|
|
332
|
+
/// Enables or disables the pinch-to-zoom feature for adjusting the zoom level during barcode scanning
|
|
333
|
+
/// note:
|
|
330
334
|
/// Default value is false
|
|
331
335
|
@property (nonatomic) BOOL pinchToZoomEnabled;
|
|
332
|
-
///
|
|
336
|
+
/// Enables or disables the audible beep sound upon successfully decoding a barcode
|
|
337
|
+
/// note:
|
|
333
338
|
/// Default value is true
|
|
334
339
|
@property (nonatomic) BOOL beepOnSuccessEnabled;
|
|
335
|
-
///
|
|
340
|
+
/// Enables or disables the device vibration upon successfully decoding a barcode.
|
|
341
|
+
/// note:
|
|
336
342
|
/// Default value is true
|
|
337
343
|
@property (nonatomic) BOOL vibrateOnSuccessEnabled;
|
|
338
|
-
///
|
|
344
|
+
/// Enables or disables the automatic closing of the scanning session upon detecting a barcode result
|
|
345
|
+
/// note:
|
|
339
346
|
/// Default value is true
|
|
340
347
|
@property (nonatomic) BOOL closeSessionOnResultEnabled;
|
|
341
|
-
///
|
|
342
|
-
///
|
|
348
|
+
/// Enables or disables the capturing and processing of image data when a barcode is successfully detected
|
|
349
|
+
/// note:
|
|
343
350
|
/// Default value is false
|
|
344
351
|
@property (nonatomic) BOOL imageResultEnabled;
|
|
345
|
-
///
|
|
346
|
-
///
|
|
352
|
+
/// Enables or disables the inclusion of barcode location information within the image data result
|
|
353
|
+
/// note:
|
|
347
354
|
/// Default value is false
|
|
348
355
|
@property (nonatomic) BOOL locationInImageResultEnabled;
|
|
349
|
-
///
|
|
356
|
+
/// Enables or disables the display of barcode location information on the camera preview
|
|
357
|
+
/// note:
|
|
350
358
|
/// Default value is true
|
|
351
359
|
@property (nonatomic) BOOL locationInPreviewEnabled;
|
|
352
|
-
///
|
|
360
|
+
/// Configures the Barkoder functionality based on the provided configuration
|
|
353
361
|
@property (nonatomic, strong) Config * _Nullable decoderConfig;
|
|
354
|
-
///
|
|
362
|
+
/// Retrieve/Sets the resolution for barcode scanning
|
|
363
|
+
/// note:
|
|
355
364
|
/// Default value is BarkoderView.BarkoderResolution.normal
|
|
356
365
|
@property (nonatomic) enum BarkoderResolution barkoderResolution;
|
|
357
|
-
///
|
|
366
|
+
/// Retrieve/Sets whether to enable barcode thumbnail on result
|
|
367
|
+
/// note:
|
|
368
|
+
/// Default value is true
|
|
358
369
|
@property (nonatomic) BOOL barcodeThumbnailOnResult;
|
|
359
|
-
///
|
|
370
|
+
/// Retrieve/Sets the threshold between duplicate scans
|
|
360
371
|
@property (nonatomic) NSInteger thresholdBetweenDuplicatesScans;
|
|
372
|
+
/// Defines the Region of Interest (ROI) on the camera preview for barcode scanning, specifying an area where the application focuses on detecting barcodes
|
|
361
373
|
- (BOOL)setRegionOfInterest:(CGRect)value error:(NSError * _Nullable * _Nullable)error;
|
|
362
|
-
///
|
|
374
|
+
/// Retrieves the region of interest (ROI)
|
|
375
|
+
/// note:
|
|
363
376
|
/// Default value is ‘CGRect(x: 3, y: 30, width: 94, height: 40)’
|
|
364
377
|
- (CGRect)getRegionOfInterest SWIFT_WARN_UNUSED_RESULT;
|
|
365
378
|
- (nonnull instancetype)initWithLicenseKey:(NSString * _Nonnull)licenseKey licenseCheckHandler:(void (^ _Nonnull)(LicenseCheckResult * _Nonnull))licenseCheckHandler;
|
|
@@ -372,10 +385,15 @@ SWIFT_CLASS("_TtC11BarkoderSDK14BarkoderConfig")
|
|
|
372
385
|
/// \param value [1, max threads available]
|
|
373
386
|
///
|
|
374
387
|
- (BOOL)setThreadsLimit:(NSInteger)value error:(NSError * _Nullable * _Nullable)error;
|
|
388
|
+
/// Get maximum threads that are used for the decoding process
|
|
375
389
|
- (NSInteger)getThreadsLimit SWIFT_WARN_UNUSED_RESULT;
|
|
390
|
+
/// Sets whether multi-code caching is enabled
|
|
376
391
|
- (void)setMulticodeCachingEnabled:(BOOL)boolean;
|
|
392
|
+
/// Retrieves whether multi-code caching is enabled
|
|
377
393
|
- (BOOL)getMulticodeCachingEnabled SWIFT_WARN_UNUSED_RESULT;
|
|
394
|
+
/// Sets the caching duration (in milliseconds) for multi-code results
|
|
378
395
|
- (void)setMulticodeCachingDuration:(NSInteger)value;
|
|
396
|
+
/// Retrieves the caching duration (in milliseconds) for multi-code results
|
|
379
397
|
- (NSInteger)getMulticodeCachingDuration SWIFT_WARN_UNUSED_RESULT;
|
|
380
398
|
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
|
|
381
399
|
@end
|
|
@@ -479,24 +497,23 @@ SWIFT_CLASS("_TtC11BarkoderSDK12BarkoderView")
|
|
|
479
497
|
/// \param delegate Callback which return fps and dps as Float
|
|
480
498
|
///
|
|
481
499
|
- (void)setBarkoderPerformanceDelegate:(id <BarkoderPerformanceDelegate> _Nullable)delegate;
|
|
482
|
-
///
|
|
483
|
-
/// If preview session is already active this state be set only for active session
|
|
484
|
-
/// otherwise the initial flash state is set. Every next preview session will be started with this state
|
|
500
|
+
/// Initiates the barcode scanning process, allowing the application to detect and decode barcodes from the device’s camera feed
|
|
485
501
|
/// \param enabled [true, false]. Default value is false
|
|
486
502
|
///
|
|
487
503
|
- (BOOL)startScanning:(id <BarkoderResultDelegate> _Nonnull)resultDelegate error:(NSError * _Nullable * _Nullable)error;
|
|
488
|
-
///
|
|
504
|
+
/// Halts the barcode scanning process, stopping the camera from capturing and processing barcode information
|
|
489
505
|
- (void)stopScanning;
|
|
490
|
-
///
|
|
506
|
+
/// Temporarily suspends the barcode scanning process, pausing the camera feed without completely stopping the scanning session
|
|
491
507
|
- (void)pauseScanning;
|
|
508
|
+
/// Sets the zoom factor for the device’s camera, adjusting the level of zoom during barcode scanning
|
|
492
509
|
- (void)setZoomFactor:(float)zoomFactor;
|
|
493
|
-
///
|
|
494
|
-
/// If preview session is already active this state be set only for active session
|
|
495
|
-
/// otherwise the initial flash state is set. Every next preview session will be started with this state
|
|
510
|
+
/// Enables or disables the device’s flash (torch) for illumination during barcode scanning
|
|
496
511
|
/// \param enabled [true, false]. Default value is false
|
|
497
512
|
///
|
|
498
513
|
- (void)setFlash:(BOOL)enabled;
|
|
514
|
+
/// Retrieves the maximum available zoom factor for the device’s camera
|
|
499
515
|
- (void)getMaxZoomFactor:(void (^ _Nonnull)(float))completion;
|
|
516
|
+
/// Checks whether the device has a built-in flash (torch) that can be used for illumination during barcode scanning
|
|
500
517
|
- (void)isFlashAvailable:(void (^ _Nonnull)(BOOL))completion;
|
|
501
518
|
- (void)cameraFrameReceivedWithSampleBuffer:(CMSampleBufferRef _Nonnull)sampleBuffer;
|
|
502
519
|
- (void)layoutSubviews;
|
|
@@ -511,6 +528,7 @@ typedef SWIFT_ENUM(NSInteger, BarkoderResolution, open) {
|
|
|
511
528
|
|
|
512
529
|
|
|
513
530
|
@interface iBarkoder (SWIFT_EXTENSION(BarkoderSDK))
|
|
531
|
+
/// Retrieves the version of the Barkoder library
|
|
514
532
|
+ (NSString * _Nonnull)GetVersion SWIFT_WARN_UNUSED_RESULT;
|
|
515
533
|
@end
|
|
516
534
|
|
|
Binary file
|
|
@@ -1881,7 +1881,8 @@
|
|
|
1881
1881
|
"moduleName": "BarkoderSDK",
|
|
1882
1882
|
"declAttributes": [
|
|
1883
1883
|
"AccessControl",
|
|
1884
|
-
"ObjC"
|
|
1884
|
+
"ObjC",
|
|
1885
|
+
"RawDocComment"
|
|
1885
1886
|
],
|
|
1886
1887
|
"throwing": true,
|
|
1887
1888
|
"funcSelfKind": "NonMutating"
|
|
@@ -2004,7 +2005,8 @@
|
|
|
2004
2005
|
"moduleName": "BarkoderSDK",
|
|
2005
2006
|
"declAttributes": [
|
|
2006
2007
|
"AccessControl",
|
|
2007
|
-
"ObjC"
|
|
2008
|
+
"ObjC",
|
|
2009
|
+
"RawDocComment"
|
|
2008
2010
|
],
|
|
2009
2011
|
"funcSelfKind": "NonMutating"
|
|
2010
2012
|
},
|
|
@@ -2031,7 +2033,8 @@
|
|
|
2031
2033
|
"moduleName": "BarkoderSDK",
|
|
2032
2034
|
"declAttributes": [
|
|
2033
2035
|
"AccessControl",
|
|
2034
|
-
"ObjC"
|
|
2036
|
+
"ObjC",
|
|
2037
|
+
"RawDocComment"
|
|
2035
2038
|
],
|
|
2036
2039
|
"funcSelfKind": "NonMutating"
|
|
2037
2040
|
},
|
|
@@ -2053,7 +2056,8 @@
|
|
|
2053
2056
|
"moduleName": "BarkoderSDK",
|
|
2054
2057
|
"declAttributes": [
|
|
2055
2058
|
"AccessControl",
|
|
2056
|
-
"ObjC"
|
|
2059
|
+
"ObjC",
|
|
2060
|
+
"RawDocComment"
|
|
2057
2061
|
],
|
|
2058
2062
|
"funcSelfKind": "NonMutating"
|
|
2059
2063
|
},
|
|
@@ -2080,7 +2084,8 @@
|
|
|
2080
2084
|
"moduleName": "BarkoderSDK",
|
|
2081
2085
|
"declAttributes": [
|
|
2082
2086
|
"AccessControl",
|
|
2083
|
-
"ObjC"
|
|
2087
|
+
"ObjC",
|
|
2088
|
+
"RawDocComment"
|
|
2084
2089
|
],
|
|
2085
2090
|
"funcSelfKind": "NonMutating"
|
|
2086
2091
|
},
|
|
@@ -2102,7 +2107,8 @@
|
|
|
2102
2107
|
"moduleName": "BarkoderSDK",
|
|
2103
2108
|
"declAttributes": [
|
|
2104
2109
|
"AccessControl",
|
|
2105
|
-
"ObjC"
|
|
2110
|
+
"ObjC",
|
|
2111
|
+
"RawDocComment"
|
|
2106
2112
|
],
|
|
2107
2113
|
"funcSelfKind": "NonMutating"
|
|
2108
2114
|
},
|
|
@@ -3023,7 +3029,8 @@
|
|
|
3023
3029
|
"declAttributes": [
|
|
3024
3030
|
"Custom",
|
|
3025
3031
|
"AccessControl",
|
|
3026
|
-
"ObjC"
|
|
3032
|
+
"ObjC",
|
|
3033
|
+
"RawDocComment"
|
|
3027
3034
|
],
|
|
3028
3035
|
"funcSelfKind": "NonMutating"
|
|
3029
3036
|
},
|
|
@@ -4726,7 +4733,8 @@
|
|
|
4726
4733
|
"static": true,
|
|
4727
4734
|
"declAttributes": [
|
|
4728
4735
|
"Final",
|
|
4729
|
-
"ObjC"
|
|
4736
|
+
"ObjC",
|
|
4737
|
+
"RawDocComment"
|
|
4730
4738
|
],
|
|
4731
4739
|
"isFromExtension": true,
|
|
4732
4740
|
"funcSelfKind": "NonMutating"
|
|
@@ -6794,98 +6802,98 @@
|
|
|
6794
6802
|
{
|
|
6795
6803
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/Config\/BarkoderConfig.swift",
|
|
6796
6804
|
"kind": "IntegerLiteral",
|
|
6797
|
-
"offset":
|
|
6805
|
+
"offset": 5376,
|
|
6798
6806
|
"length": 1,
|
|
6799
6807
|
"value": "0"
|
|
6800
6808
|
},
|
|
6801
6809
|
{
|
|
6802
6810
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/Config\/BarkoderConfig.swift",
|
|
6803
6811
|
"kind": "IntegerLiteral",
|
|
6804
|
-
"offset":
|
|
6812
|
+
"offset": 5388,
|
|
6805
6813
|
"length": 2,
|
|
6806
6814
|
"value": "99"
|
|
6807
6815
|
},
|
|
6808
6816
|
{
|
|
6809
6817
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/Config\/BarkoderConfig.swift",
|
|
6810
6818
|
"kind": "IntegerLiteral",
|
|
6811
|
-
"offset":
|
|
6819
|
+
"offset": 5400,
|
|
6812
6820
|
"length": 1,
|
|
6813
6821
|
"value": "0"
|
|
6814
6822
|
},
|
|
6815
6823
|
{
|
|
6816
6824
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/Config\/BarkoderConfig.swift",
|
|
6817
6825
|
"kind": "IntegerLiteral",
|
|
6818
|
-
"offset":
|
|
6826
|
+
"offset": 5411,
|
|
6819
6827
|
"length": 2,
|
|
6820
6828
|
"value": "99"
|
|
6821
6829
|
},
|
|
6822
6830
|
{
|
|
6823
6831
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/Config\/BarkoderConfig.swift",
|
|
6824
6832
|
"kind": "IntegerLiteral",
|
|
6825
|
-
"offset":
|
|
6833
|
+
"offset": 5511,
|
|
6826
6834
|
"length": 3,
|
|
6827
6835
|
"value": "100"
|
|
6828
6836
|
},
|
|
6829
6837
|
{
|
|
6830
6838
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/Config\/BarkoderConfig.swift",
|
|
6831
6839
|
"kind": "IntegerLiteral",
|
|
6832
|
-
"offset":
|
|
6840
|
+
"offset": 5527,
|
|
6833
6841
|
"length": 1,
|
|
6834
6842
|
"value": "0"
|
|
6835
6843
|
},
|
|
6836
6844
|
{
|
|
6837
6845
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/Config\/BarkoderConfig.swift",
|
|
6838
6846
|
"kind": "IntegerLiteral",
|
|
6839
|
-
"offset":
|
|
6847
|
+
"offset": 5541,
|
|
6840
6848
|
"length": 3,
|
|
6841
6849
|
"value": "100"
|
|
6842
6850
|
},
|
|
6843
6851
|
{
|
|
6844
6852
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/Config\/BarkoderConfig.swift",
|
|
6845
6853
|
"kind": "IntegerLiteral",
|
|
6846
|
-
"offset":
|
|
6854
|
+
"offset": 5558,
|
|
6847
6855
|
"length": 1,
|
|
6848
6856
|
"value": "0"
|
|
6849
6857
|
},
|
|
6850
6858
|
{
|
|
6851
6859
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/Config\/BarkoderConfig.swift",
|
|
6852
6860
|
"kind": "IntegerLiteral",
|
|
6853
|
-
"offset":
|
|
6861
|
+
"offset": 5664,
|
|
6854
6862
|
"length": 3,
|
|
6855
6863
|
"value": "100"
|
|
6856
6864
|
},
|
|
6857
6865
|
{
|
|
6858
6866
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/Config\/BarkoderConfig.swift",
|
|
6859
6867
|
"kind": "IntegerLiteral",
|
|
6860
|
-
"offset":
|
|
6868
|
+
"offset": 5686,
|
|
6861
6869
|
"length": 3,
|
|
6862
6870
|
"value": "100"
|
|
6863
6871
|
},
|
|
6864
6872
|
{
|
|
6865
6873
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/Config\/BarkoderConfig.swift",
|
|
6866
6874
|
"kind": "IntegerLiteral",
|
|
6867
|
-
"offset":
|
|
6875
|
+
"offset": 6945,
|
|
6868
6876
|
"length": 1,
|
|
6869
6877
|
"value": "1"
|
|
6870
6878
|
},
|
|
6871
6879
|
{
|
|
6872
6880
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/Config\/BarkoderConfig.swift",
|
|
6873
6881
|
"kind": "IntegerLiteral",
|
|
6874
|
-
"offset":
|
|
6882
|
+
"offset": 7652,
|
|
6875
6883
|
"length": 1,
|
|
6876
6884
|
"value": "1"
|
|
6877
6885
|
},
|
|
6878
6886
|
{
|
|
6879
6887
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/Config\/BarkoderConfig.swift",
|
|
6880
6888
|
"kind": "IntegerLiteral",
|
|
6881
|
-
"offset":
|
|
6889
|
+
"offset": 7656,
|
|
6882
6890
|
"length": 1,
|
|
6883
6891
|
"value": "0"
|
|
6884
6892
|
},
|
|
6885
6893
|
{
|
|
6886
6894
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/Config\/BarkoderConfig.swift",
|
|
6887
6895
|
"kind": "IntegerLiteral",
|
|
6888
|
-
"offset":
|
|
6896
|
+
"offset": 7893,
|
|
6889
6897
|
"length": 1,
|
|
6890
6898
|
"value": "0"
|
|
6891
6899
|
},
|
|
@@ -7508,147 +7516,154 @@
|
|
|
7508
7516
|
{
|
|
7509
7517
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/BarkoderView\/BarkoderView.swift",
|
|
7510
7518
|
"kind": "Array",
|
|
7511
|
-
"offset":
|
|
7519
|
+
"offset": 1769,
|
|
7512
7520
|
"length": 2,
|
|
7513
7521
|
"value": "[]"
|
|
7514
7522
|
},
|
|
7515
7523
|
{
|
|
7516
7524
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/BarkoderView\/BarkoderView.swift",
|
|
7517
7525
|
"kind": "IntegerLiteral",
|
|
7518
|
-
"offset":
|
|
7526
|
+
"offset": 1835,
|
|
7519
7527
|
"length": 1,
|
|
7520
7528
|
"value": "0"
|
|
7521
7529
|
},
|
|
7522
7530
|
{
|
|
7523
7531
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/BarkoderView\/BarkoderView.swift",
|
|
7524
7532
|
"kind": "BooleanLiteral",
|
|
7525
|
-
"offset":
|
|
7533
|
+
"offset": 1875,
|
|
7526
7534
|
"length": 5,
|
|
7527
7535
|
"value": "false"
|
|
7528
7536
|
},
|
|
7529
7537
|
{
|
|
7530
7538
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/BarkoderView\/BarkoderView.swift",
|
|
7531
7539
|
"kind": "BooleanLiteral",
|
|
7532
|
-
"offset":
|
|
7540
|
+
"offset": 2484,
|
|
7533
7541
|
"length": 4,
|
|
7534
7542
|
"value": "true"
|
|
7535
7543
|
},
|
|
7536
7544
|
{
|
|
7537
7545
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/BarkoderView\/BarkoderView.swift",
|
|
7538
7546
|
"kind": "BooleanLiteral",
|
|
7539
|
-
"offset":
|
|
7547
|
+
"offset": 3651,
|
|
7540
7548
|
"length": 5,
|
|
7541
7549
|
"value": "false"
|
|
7542
7550
|
},
|
|
7543
7551
|
{
|
|
7544
7552
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/BarkoderView\/BarkoderView.swift",
|
|
7545
7553
|
"kind": "BooleanLiteral",
|
|
7546
|
-
"offset":
|
|
7554
|
+
"offset": 4869,
|
|
7547
7555
|
"length": 5,
|
|
7548
7556
|
"value": "false"
|
|
7549
7557
|
},
|
|
7550
7558
|
{
|
|
7551
7559
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/BarkoderView\/BarkoderView.swift",
|
|
7552
7560
|
"kind": "BooleanLiteral",
|
|
7553
|
-
"offset":
|
|
7561
|
+
"offset": 4924,
|
|
7554
7562
|
"length": 4,
|
|
7555
7563
|
"value": "true"
|
|
7556
7564
|
},
|
|
7557
7565
|
{
|
|
7558
7566
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/BarkoderView\/BarkoderView.swift",
|
|
7559
7567
|
"kind": "BooleanLiteral",
|
|
7560
|
-
"offset":
|
|
7568
|
+
"offset": 5345,
|
|
7561
7569
|
"length": 5,
|
|
7562
7570
|
"value": "false"
|
|
7563
7571
|
},
|
|
7564
7572
|
{
|
|
7565
7573
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/BarkoderView\/BarkoderView.swift",
|
|
7566
7574
|
"kind": "BooleanLiteral",
|
|
7567
|
-
"offset":
|
|
7575
|
+
"offset": 5505,
|
|
7568
7576
|
"length": 4,
|
|
7569
7577
|
"value": "true"
|
|
7570
7578
|
},
|
|
7571
7579
|
{
|
|
7572
7580
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/BarkoderView\/BarkoderView.swift",
|
|
7573
7581
|
"kind": "BooleanLiteral",
|
|
7574
|
-
"offset":
|
|
7582
|
+
"offset": 5588,
|
|
7583
|
+
"length": 4,
|
|
7584
|
+
"value": "true"
|
|
7585
|
+
},
|
|
7586
|
+
{
|
|
7587
|
+
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/BarkoderView\/BarkoderView.swift",
|
|
7588
|
+
"kind": "BooleanLiteral",
|
|
7589
|
+
"offset": 5801,
|
|
7575
7590
|
"length": 5,
|
|
7576
7591
|
"value": "false"
|
|
7577
7592
|
},
|
|
7578
7593
|
{
|
|
7579
7594
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/BarkoderView\/BarkoderView.swift",
|
|
7580
7595
|
"kind": "IntegerLiteral",
|
|
7581
|
-
"offset":
|
|
7596
|
+
"offset": 8811,
|
|
7582
7597
|
"length": 1,
|
|
7583
7598
|
"value": "0"
|
|
7584
7599
|
},
|
|
7585
7600
|
{
|
|
7586
7601
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/BarkoderView\/BarkoderView.swift",
|
|
7587
7602
|
"kind": "BooleanLiteral",
|
|
7588
|
-
"offset":
|
|
7603
|
+
"offset": 8952,
|
|
7589
7604
|
"length": 4,
|
|
7590
7605
|
"value": "true"
|
|
7591
7606
|
},
|
|
7592
7607
|
{
|
|
7593
7608
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/BarkoderView\/BarkoderView.swift",
|
|
7594
7609
|
"kind": "BooleanLiteral",
|
|
7595
|
-
"offset":
|
|
7610
|
+
"offset": 9054,
|
|
7596
7611
|
"length": 4,
|
|
7597
7612
|
"value": "true"
|
|
7598
7613
|
},
|
|
7599
7614
|
{
|
|
7600
7615
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/BarkoderView\/BarkoderView.swift",
|
|
7601
7616
|
"kind": "IntegerLiteral",
|
|
7602
|
-
"offset":
|
|
7617
|
+
"offset": 10919,
|
|
7603
7618
|
"length": 1,
|
|
7604
7619
|
"value": "0"
|
|
7605
7620
|
},
|
|
7606
7621
|
{
|
|
7607
7622
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/BarkoderView\/BarkoderView.swift",
|
|
7608
7623
|
"kind": "BooleanLiteral",
|
|
7609
|
-
"offset":
|
|
7624
|
+
"offset": 11073,
|
|
7610
7625
|
"length": 4,
|
|
7611
7626
|
"value": "true"
|
|
7612
7627
|
},
|
|
7613
7628
|
{
|
|
7614
7629
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/BarkoderView\/BarkoderView.swift",
|
|
7615
7630
|
"kind": "BooleanLiteral",
|
|
7616
|
-
"offset":
|
|
7631
|
+
"offset": 11176,
|
|
7617
7632
|
"length": 5,
|
|
7618
7633
|
"value": "false"
|
|
7619
7634
|
},
|
|
7620
7635
|
{
|
|
7621
7636
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/BarkoderView\/BarkoderView.swift",
|
|
7622
7637
|
"kind": "IntegerLiteral",
|
|
7623
|
-
"offset":
|
|
7638
|
+
"offset": 11986,
|
|
7624
7639
|
"length": 1,
|
|
7625
7640
|
"value": "0"
|
|
7626
7641
|
},
|
|
7627
7642
|
{
|
|
7628
7643
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/BarkoderView\/BarkoderView.swift",
|
|
7629
7644
|
"kind": "BooleanLiteral",
|
|
7630
|
-
"offset":
|
|
7645
|
+
"offset": 12040,
|
|
7631
7646
|
"length": 4,
|
|
7632
7647
|
"value": "true"
|
|
7633
7648
|
},
|
|
7634
7649
|
{
|
|
7635
7650
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/BarkoderView\/BarkoderView.swift",
|
|
7636
7651
|
"kind": "BooleanLiteral",
|
|
7637
|
-
"offset":
|
|
7652
|
+
"offset": 12154,
|
|
7638
7653
|
"length": 4,
|
|
7639
7654
|
"value": "true"
|
|
7640
7655
|
},
|
|
7641
7656
|
{
|
|
7642
7657
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/BarkoderView\/BarkoderView.swift",
|
|
7643
7658
|
"kind": "StringLiteral",
|
|
7644
|
-
"offset":
|
|
7659
|
+
"offset": 13742,
|
|
7645
7660
|
"length": 6,
|
|
7646
7661
|
"value": "\"beep\""
|
|
7647
7662
|
},
|
|
7648
7663
|
{
|
|
7649
7664
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/BarkoderView\/BarkoderView.swift",
|
|
7650
7665
|
"kind": "StringLiteral",
|
|
7651
|
-
"offset":
|
|
7666
|
+
"offset": 13765,
|
|
7652
7667
|
"length": 5,
|
|
7653
7668
|
"value": "\"mp3\""
|
|
7654
7669
|
},
|
|
@@ -7907,7 +7922,7 @@
|
|
|
7907
7922
|
{
|
|
7908
7923
|
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/Extensions\/iBarkoder+GetVersion.swift",
|
|
7909
7924
|
"kind": "StringLiteral",
|
|
7910
|
-
"offset":
|
|
7925
|
+
"offset": 338,
|
|
7911
7926
|
"length": 28,
|
|
7912
7927
|
"value": "\"CFBundleShortVersionString\""
|
|
7913
7928
|
},
|
|
@@ -8456,6 +8471,13 @@
|
|
|
8456
8471
|
"offset": 1068,
|
|
8457
8472
|
"length": 5,
|
|
8458
8473
|
"value": "false"
|
|
8474
|
+
},
|
|
8475
|
+
{
|
|
8476
|
+
"filePath": "\/Users\/slobodanmarinkovik\/Documents\/Projects\/barkoder\/barkoder-ios\/BarkoderSDK\/BarkoderSDK\/BarkoderOverlay\/NoActiveDecodersOverlay.swift",
|
|
8477
|
+
"kind": "BooleanLiteral",
|
|
8478
|
+
"offset": 1597,
|
|
8479
|
+
"length": 5,
|
|
8480
|
+
"value": "false"
|
|
8459
8481
|
}
|
|
8460
8482
|
]
|
|
8461
8483
|
}
|
|
Binary file
|