Manos Chorianopoulos

barcode lib v16

Showing 26 changed files with 5 additions and 599 deletions
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
// Generated by Apple Swift version 5.5.1 (swiftlang-1300.0.31.4 clang-1300.0.29.6)
#ifndef RSBARCODES_SWIFT_SWIFT_H
#define RSBARCODES_SWIFT_SWIFT_H
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wgcc-compat"
#if !defined(__has_include)
# define __has_include(x) 0
#endif
#if !defined(__has_attribute)
# define __has_attribute(x) 0
#endif
#if !defined(__has_feature)
# define __has_feature(x) 0
#endif
#if !defined(__has_warning)
# define __has_warning(x) 0
#endif
#if __has_include(<swift/objc-prologue.h>)
# include <swift/objc-prologue.h>
#endif
#pragma clang diagnostic ignored "-Wauto-import"
#include <Foundation/Foundation.h>
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#if !defined(SWIFT_TYPEDEFS)
# define SWIFT_TYPEDEFS 1
# if __has_include(<uchar.h>)
# include <uchar.h>
# elif !defined(__cplusplus)
typedef uint_least16_t char16_t;
typedef uint_least32_t char32_t;
# endif
typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#endif
#if !defined(SWIFT_PASTE)
# define SWIFT_PASTE_HELPER(x, y) x##y
# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
#endif
#if !defined(SWIFT_METATYPE)
# define SWIFT_METATYPE(X) Class
#endif
#if !defined(SWIFT_CLASS_PROPERTY)
# if __has_feature(objc_class_property)
# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
# else
# define SWIFT_CLASS_PROPERTY(...)
# endif
#endif
#if __has_attribute(objc_runtime_name)
# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
#else
# define SWIFT_RUNTIME_NAME(X)
#endif
#if __has_attribute(swift_name)
# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
#else
# define SWIFT_COMPILE_NAME(X)
#endif
#if __has_attribute(objc_method_family)
# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
#else
# define SWIFT_METHOD_FAMILY(X)
#endif
#if __has_attribute(noescape)
# define SWIFT_NOESCAPE __attribute__((noescape))
#else
# define SWIFT_NOESCAPE
#endif
#if __has_attribute(ns_consumed)
# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
#else
# define SWIFT_RELEASES_ARGUMENT
#endif
#if __has_attribute(warn_unused_result)
# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
#else
# define SWIFT_WARN_UNUSED_RESULT
#endif
#if __has_attribute(noreturn)
# define SWIFT_NORETURN __attribute__((noreturn))
#else
# define SWIFT_NORETURN
#endif
#if !defined(SWIFT_CLASS_EXTRA)
# define SWIFT_CLASS_EXTRA
#endif
#if !defined(SWIFT_PROTOCOL_EXTRA)
# define SWIFT_PROTOCOL_EXTRA
#endif
#if !defined(SWIFT_ENUM_EXTRA)
# define SWIFT_ENUM_EXTRA
#endif
#if !defined(SWIFT_CLASS)
# if __has_attribute(objc_subclassing_restricted)
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
# else
# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
# endif
#endif
#if !defined(SWIFT_RESILIENT_CLASS)
# if __has_attribute(objc_class_stub)
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)
# else
# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)
# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
# endif
#endif
#if !defined(SWIFT_PROTOCOL)
# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
#endif
#if !defined(SWIFT_EXTENSION)
# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
#endif
#if !defined(OBJC_DESIGNATED_INITIALIZER)
# if __has_attribute(objc_designated_initializer)
# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
# else
# define OBJC_DESIGNATED_INITIALIZER
# endif
#endif
#if !defined(SWIFT_ENUM_ATTR)
# if defined(__has_attribute) && __has_attribute(enum_extensibility)
# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
# else
# define SWIFT_ENUM_ATTR(_extensibility)
# endif
#endif
#if !defined(SWIFT_ENUM)
# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
# if __has_feature(generalized_swift_name)
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
# else
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
# endif
#endif
#if !defined(SWIFT_UNAVAILABLE)
# define SWIFT_UNAVAILABLE __attribute__((unavailable))
#endif
#if !defined(SWIFT_UNAVAILABLE_MSG)
# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
#endif
#if !defined(SWIFT_AVAILABILITY)
# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
#endif
#if !defined(SWIFT_WEAK_IMPORT)
# define SWIFT_WEAK_IMPORT __attribute__((weak_import))
#endif
#if !defined(SWIFT_DEPRECATED)
# define SWIFT_DEPRECATED __attribute__((deprecated))
#endif
#if !defined(SWIFT_DEPRECATED_MSG)
# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
#endif
#if __has_feature(attribute_diagnose_if_objc)
# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
#else
# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
#endif
#if !defined(IBSegueAction)
# define IBSegueAction
#endif
#if __has_feature(modules)
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
#endif
@import AVFoundation;
@import CoreFoundation;
@import CoreGraphics;
@import Foundation;
@import QuartzCore;
@import UIKit;
#endif
#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
#pragma clang diagnostic ignored "-Wduplicate-method-arg"
#if __has_warning("-Wpragma-clang-attribute")
# pragma clang diagnostic ignored "-Wpragma-clang-attribute"
#endif
#pragma clang diagnostic ignored "-Wunknown-pragmas"
#pragma clang diagnostic ignored "-Wnullability"
#if __has_attribute(external_source_symbol)
# pragma push_macro("any")
# undef any
# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="RSBarcodes_Swift",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
# pragma pop_macro("any")
#endif
@class NSCoder;
SWIFT_CLASS("_TtC16RSBarcodes_Swift11RSCodeLayer")
@interface RSCodeLayer : CALayer
- (void)drawInContext:(CGContextRef _Nonnull)ctx;
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;
@end
@class AVCaptureDevice;
@class AVCaptureMetadataOutput;
@class AVCaptureSession;
@class RSFocusMarkLayer;
@class RSCornersLayer;
@class AVMetadataMachineReadableCodeObject;
@class NSNumber;
@protocol UIViewControllerTransitionCoordinator;
@class AVMetadataObject;
@class AVCaptureConnection;
@class NSString;
@class NSBundle;
SWIFT_CLASS("_TtC16RSBarcodes_Swift26RSCodeReaderViewController")
@interface RSCodeReaderViewController : UIViewController <AVCaptureMetadataOutputObjectsDelegate>
@property (nonatomic, strong) AVCaptureDevice * _Nullable device;
@property (nonatomic, strong) AVCaptureMetadataOutput * _Nonnull output;
@property (nonatomic, strong) AVCaptureSession * _Nonnull session;
@property (nonatomic, strong) RSFocusMarkLayer * _Nonnull focusMarkLayer;
@property (nonatomic, strong) RSCornersLayer * _Nonnull cornersLayer;
@property (nonatomic, copy) void (^ _Nullable tapHandler)(CGPoint);
@property (nonatomic, copy) void (^ _Nullable barcodesHandler)(NSArray<AVMetadataMachineReadableCodeObject *> * _Nonnull);
@property (nonatomic) BOOL isCrazyMode;
- (BOOL)hasFlash SWIFT_WARN_UNUSED_RESULT;
- (BOOL)hasTorch SWIFT_WARN_UNUSED_RESULT;
- (enum AVCaptureDevicePosition)switchCamera SWIFT_WARN_UNUSED_RESULT;
- (BOOL)toggleTorch;
- (void)viewDidLayoutSubviews;
- (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id <UIViewControllerTransitionCoordinator> _Nonnull)coordinator;
- (void)viewDidLoad;
- (void)viewWillAppear:(BOOL)animated;
- (void)viewDidDisappear:(BOOL)animated;
- (void)captureOutput:(AVCaptureMetadataOutput * _Nonnull)output didOutputMetadataObjects:(NSArray<AVMetadataObject *> * _Nonnull)metadataObjects fromConnection:(AVCaptureConnection * _Nonnull)connection;
- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER;
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;
@end
SWIFT_CLASS("_TtC16RSBarcodes_Swift14RSCornersLayer")
@interface RSCornersLayer : CALayer
@property (nonatomic) CGColorRef _Nonnull strokeColor;
@property (nonatomic) CGFloat strokeWidth;
@property (nonatomic, copy) NSArray<NSArray<NSValue *> *> * _Nonnull drawingCornersArray;
@property (nonatomic, copy) NSArray<NSArray *> * _Nonnull cornersArray;
- (void)drawInContext:(CGContextRef _Nonnull)ctx;
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;
@end
SWIFT_CLASS("_TtC16RSBarcodes_Swift16RSFocusMarkLayer")
@interface RSFocusMarkLayer : CALayer
@property (nonatomic) CGSize size;
@property (nonatomic) CGFloat sight;
@property (nonatomic) CGColorRef _Nonnull strokeColor;
@property (nonatomic) CGFloat strokeWidth;
@property (nonatomic) CFTimeInterval delay;
@property (nonatomic) BOOL canDraw;
@property (nonatomic) CGPoint point;
- (void)drawInContext:(CGContextRef _Nonnull)ctx;
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
- (nonnull instancetype)initWithLayer:(id _Nonnull)layer OBJC_DESIGNATED_INITIALIZER;
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER;
@end
@interface UIColor (SWIFT_EXTENSION(RSBarcodes_Swift))
/// The shorthand three-digit hexadecimal representation of color.
/// #RGB defines to the color #RRGGBB.
/// \param hex3 Three-digit hexadecimal value.
///
/// \param alpha 0.0 - 1.0. The default is 1.0.
///
- (nonnull instancetype)initWithHex3:(uint16_t)hex3 alpha:(CGFloat)alpha;
/// The shorthand four-digit hexadecimal representation of color with alpha.
/// #RGBA defines to the color #RRGGBBAA.
/// \param hex4 Four-digit hexadecimal value.
///
- (nonnull instancetype)initWithHex4:(uint16_t)hex4;
/// The six-digit hexadecimal representation of color of the form #RRGGBB.
/// \param hex6 Six-digit hexadecimal value.
///
- (nonnull instancetype)initWithHex6:(uint32_t)hex6 alpha:(CGFloat)alpha;
/// The six-digit hexadecimal representation of color with alpha of the form #RRGGBBAA.
/// \param hex8 Eight-digit hexadecimal value.
///
- (nonnull instancetype)initWithHex8:(uint32_t)hex8;
/// The rgba string representation of color with alpha of the form #RRGGBBAA/#RRGGBB, throws error.
/// \param rgba String value.
///
- (nullable instancetype)initWithRgba_throws:(NSString * _Nonnull)rgba error:(NSError * _Nullable * _Nullable)error;
/// The rgba string representation of color with alpha of the form #RRGGBBAA/#RRGGBB, fails to default color.
/// \param rgba String value.
///
- (nonnull instancetype)init:(NSString * _Nonnull)rgba defaultColor:(UIColor * _Nonnull)defaultColor;
/// Hex string of a UIColor instance.
/// \param includeAlpha Whether the alpha should be included.
///
- (NSString * _Nonnull)hexString:(BOOL)includeAlpha SWIFT_WARN_UNUSED_RESULT;
@end
#if __has_attribute(external_source_symbol)
# pragma clang attribute pop
#endif
#pragma clang diagnostic pop
#endif
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#else
#ifndef FOUNDATION_EXPORT
#if defined(__cplusplus)
#define FOUNDATION_EXPORT extern "C"
#else
#define FOUNDATION_EXPORT extern
#endif
#endif
#endif
FOUNDATION_EXPORT double RSBarcodes_SwiftVersionNumber;
FOUNDATION_EXPORT const unsigned char RSBarcodes_SwiftVersionString[];
framework module RSBarcodes_Swift {
umbrella header "RSBarcodes_Swift-umbrella.h"
export *
module * { export * }
}
module RSBarcodes_Swift.Swift {
header "RSBarcodes_Swift-Swift.h"
requires objc
}
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>files</key>
<dict>
<key>Headers/RSBarcodes_Swift-Swift.h</key>
<data>
erisrS1/u+8TZ3WVXFNJkVogLGw=
</data>
<key>Headers/RSBarcodes_Swift-umbrella.h</key>
<data>
0TnACMJT40k28a/aTie+R/Jrkh8=
</data>
<key>Info.plist</key>
<data>
kE78fllmHIrOl54Izdn6Ae+FpvE=
</data>
<key>Modules/RSBarcodes_Swift.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo</key>
<data>
CGQ7SX7SsGu1QBGc5kgEKSpp2gc=
</data>
<key>Modules/RSBarcodes_Swift.swiftmodule/Project/x86_64.swiftsourceinfo</key>
<data>
CGQ7SX7SsGu1QBGc5kgEKSpp2gc=
</data>
<key>Modules/RSBarcodes_Swift.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
<data>
fwbiFMk0EQtU3SggBZWR0LRYQrI=
</data>
<key>Modules/RSBarcodes_Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<data>
BRefe7Vzn+OEBlKU53U3mFGJL+U=
</data>
<key>Modules/RSBarcodes_Swift.swiftmodule/x86_64.swiftdoc</key>
<data>
fwbiFMk0EQtU3SggBZWR0LRYQrI=
</data>
<key>Modules/RSBarcodes_Swift.swiftmodule/x86_64.swiftmodule</key>
<data>
BRefe7Vzn+OEBlKU53U3mFGJL+U=
</data>
<key>Modules/module.modulemap</key>
<data>
pxD5UznHo3pdw7cPVu0scIKr55s=
</data>
</dict>
<key>files2</key>
<dict>
<key>Headers/RSBarcodes_Swift-Swift.h</key>
<dict>
<key>hash</key>
<data>
erisrS1/u+8TZ3WVXFNJkVogLGw=
</data>
<key>hash2</key>
<data>
0I/v6kST7Mn0QBo8aQsx8k1+c2HOH8jBB2PNhRHizcY=
</data>
</dict>
<key>Headers/RSBarcodes_Swift-umbrella.h</key>
<dict>
<key>hash</key>
<data>
0TnACMJT40k28a/aTie+R/Jrkh8=
</data>
<key>hash2</key>
<data>
ZSRCzHkz+vBbyb17C2cWvRXpd1rTFKjgUQk/jGXmQZI=
</data>
</dict>
<key>Modules/RSBarcodes_Swift.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo</key>
<dict>
<key>hash</key>
<data>
CGQ7SX7SsGu1QBGc5kgEKSpp2gc=
</data>
<key>hash2</key>
<data>
Ri2Li7UCqJMhGw8CdCM+7qcMEonAkxrFhQptiASwji4=
</data>
</dict>
<key>Modules/RSBarcodes_Swift.swiftmodule/Project/x86_64.swiftsourceinfo</key>
<dict>
<key>hash</key>
<data>
CGQ7SX7SsGu1QBGc5kgEKSpp2gc=
</data>
<key>hash2</key>
<data>
Ri2Li7UCqJMhGw8CdCM+7qcMEonAkxrFhQptiASwji4=
</data>
</dict>
<key>Modules/RSBarcodes_Swift.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
<dict>
<key>hash</key>
<data>
fwbiFMk0EQtU3SggBZWR0LRYQrI=
</data>
<key>hash2</key>
<data>
yfbvDLaZJnx68X1H1p1Fb1gf3E6Wo4AA0f4fo4HNHX8=
</data>
</dict>
<key>Modules/RSBarcodes_Swift.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<dict>
<key>hash</key>
<data>
BRefe7Vzn+OEBlKU53U3mFGJL+U=
</data>
<key>hash2</key>
<data>
IF4mngxnc25pFf/EbWAUU4SCk1dPCbIYxyD5yhDBGWo=
</data>
</dict>
<key>Modules/RSBarcodes_Swift.swiftmodule/x86_64.swiftdoc</key>
<dict>
<key>hash</key>
<data>
fwbiFMk0EQtU3SggBZWR0LRYQrI=
</data>
<key>hash2</key>
<data>
yfbvDLaZJnx68X1H1p1Fb1gf3E6Wo4AA0f4fo4HNHX8=
</data>
</dict>
<key>Modules/RSBarcodes_Swift.swiftmodule/x86_64.swiftmodule</key>
<dict>
<key>hash</key>
<data>
BRefe7Vzn+OEBlKU53U3mFGJL+U=
</data>
<key>hash2</key>
<data>
IF4mngxnc25pFf/EbWAUU4SCk1dPCbIYxyD5yhDBGWo=
</data>
</dict>
<key>Modules/module.modulemap</key>
<dict>
<key>hash</key>
<data>
pxD5UznHo3pdw7cPVu0scIKr55s=
</data>
<key>hash2</key>
<data>
IbaOgpIwCzuBz2g4wBWs2DPFBcn0L4JAnrOGO7F9/JE=
</data>
</dict>
</dict>
<key>rules</key>
<dict>
<key>^.*</key>
<true/>
<key>^.*\.lproj/</key>
<dict>
<key>optional</key>
<true/>
<key>weight</key>
<real>1000</real>
</dict>
<key>^.*\.lproj/locversion.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>1100</real>
</dict>
<key>^Base\.lproj/</key>
<dict>
<key>weight</key>
<real>1010</real>
</dict>
<key>^version.plist$</key>
<true/>
</dict>
<key>rules2</key>
<dict>
<key>.*\.dSYM($|/)</key>
<dict>
<key>weight</key>
<real>11</real>
</dict>
<key>^(.*/)?\.DS_Store$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>2000</real>
</dict>
<key>^.*</key>
<true/>
<key>^.*\.lproj/</key>
<dict>
<key>optional</key>
<true/>
<key>weight</key>
<real>1000</real>
</dict>
<key>^.*\.lproj/locversion.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>1100</real>
</dict>
<key>^Base\.lproj/</key>
<dict>
<key>weight</key>
<real>1010</real>
</dict>
<key>^Info\.plist$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>20</real>
</dict>
<key>^PkgInfo$</key>
<dict>
<key>omit</key>
<true/>
<key>weight</key>
<real>20</real>
</dict>
<key>^embedded\.provisionprofile$</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
<key>^version\.plist$</key>
<dict>
<key>weight</key>
<real>20</real>
</dict>
</dict>
</dict>
</plist>
......@@ -26,11 +26,11 @@
</data>
<key>Modules/WarplySDKFrameworkIOS.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo</key>
<data>
F3IRFWeEvgf5WbtHWVLOpbYSfy0=
1Tt0SdhFkvFqXoRrk4NNSM+nu4A=
</data>
<key>Modules/WarplySDKFrameworkIOS.swiftmodule/Project/x86_64.swiftsourceinfo</key>
<data>
F3IRFWeEvgf5WbtHWVLOpbYSfy0=
1Tt0SdhFkvFqXoRrk4NNSM+nu4A=
</data>
<key>Modules/WarplySDKFrameworkIOS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
<data>
......@@ -127,14 +127,14 @@
<dict>
<key>hash2</key>
<data>
NS4NxmKusGBnT4RO3yPbX/ZESBk4GWp/oaaIW9NpB5I=
/fZJdbJJuXwvwibV8aztEMk4k2yXoU4sQ24THQs64x8=
</data>
</dict>
<key>Modules/WarplySDKFrameworkIOS.swiftmodule/Project/x86_64.swiftsourceinfo</key>
<dict>
<key>hash2</key>
<data>
NS4NxmKusGBnT4RO3yPbX/ZESBk4GWp/oaaIW9NpB5I=
/fZJdbJJuXwvwibV8aztEMk4k2yXoU4sQ24THQs64x8=
</data>
</dict>
<key>Modules/WarplySDKFrameworkIOS.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
......
......@@ -15,7 +15,7 @@ Pod::Spec.new do |spec|
spec.public_header_files = "WarplySDKFrameworkIOS.framework/Headers/*.h"
# spec.source_files = 'WarplySDKFrameworkIOS/*.xcassets', 'WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/*.xcassets', "WarplySDKFrameworkIOS/*.png", "WarplySDKFrameworkIOS/*.xcassets", "WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/*.xcassets","WarplySDKFrameworkIOS/*.xib", "WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/*.xib", "WarplySDKFrameworkIOS/*.{h,m}", "WarplySDKFrameworkIOS/*.{h,m}", "WarplySDKFrameworkIOS/**/*.{h,m}", "WarplySDKFrameworkIOS/**/**/*.{h,m}", "WarplySDKFrameworkIOS/**/**/**/*.{h,m}", "WarplySDKFrameworkIOS/*.swift", "*.swift", "WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/*.swift", "WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/*.swift", 'WarplySDKFrameworkIOS/UIResources/*.png', 'WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/UIResources/*.png'
spec.exclude_files = "Classes/Exclude"
spec.source_files = "WarplySDKFrameworkIOS.framework/Headers/*.h", "PackageFrameworks/**/*", "RSBarcodes_Swift/RSBarcodes_Swift.framework/Headers/*.h", "RSBarcodes_Swift.swiftmodule/**/*", "RSBarcodes_Swift.o"
spec.source_files = "WarplySDKFrameworkIOS.framework/Headers/*.h", "PackageFrameworks/**/*", "RSBarcodes_Swift.swiftmodule/**/*", "RSBarcodes_Swift.o"
spec.vendored_frameworks = "WarplySDKFrameworkIOS.framework"
# spec.resource_bundles = {
# 'Resources' => ['WarplySDKFrameworkIOS/*.xcassets', 'WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/*.xcassets']
......