diff --git a/BugfenderSDK-XCFramework.json b/BugfenderSDK-XCFramework.json index 4bef195..117e011 100644 --- a/BugfenderSDK-XCFramework.json +++ b/BugfenderSDK-XCFramework.json @@ -16,5 +16,6 @@ "1.12.2" : "https://github.com/bugfender/BugfenderSDK-iOS/releases/download/1.12.2/BugfenderSDK.xcframework.zip", "1.13.0" : "https://github.com/bugfender/BugfenderSDK-iOS/releases/download/1.13.0/BugfenderSDK.xcframework.zip", "1.13.1" : "https://github.com/bugfender/BugfenderSDK-iOS/releases/download/1.13.1/BugfenderSDK.xcframework.zip", - "1.13.2" : "https://github.com/bugfender/BugfenderSDK-iOS/releases/download/1.13.2/BugfenderSDK.xcframework.zip" + "1.13.2" : "https://github.com/bugfender/BugfenderSDK-iOS/releases/download/1.13.2/BugfenderSDK.xcframework.zip", + "2.0.0" : "https://github.com/bugfender/BugfenderSDK-iOS/releases/download/2.0.0/BugfenderSDK.xcframework.zip" } diff --git a/BugfenderSDK.framework/BugfenderSDK b/BugfenderSDK.framework/BugfenderSDK deleted file mode 100755 index e72bd89..0000000 Binary files a/BugfenderSDK.framework/BugfenderSDK and /dev/null differ diff --git a/BugfenderSDK.framework/Headers/BFDefaultLogInterceptor.h b/BugfenderSDK.framework/Headers/BFDefaultLogInterceptor.h deleted file mode 100644 index 53bb420..0000000 --- a/BugfenderSDK.framework/Headers/BFDefaultLogInterceptor.h +++ /dev/null @@ -1,13 +0,0 @@ -// -// Created by Fran Montiel on 24/1/23. -// Copyright (c) 2023 Beenario GmbH. All rights reserved. -// - -#import -#import "BFLogInterceptor.h" - -/** - * Default BFLogInterceptor that returns the same BFInterceptedLog that receives - */ -@interface BFDefaultLogInterceptor: NSObject -@end diff --git a/BugfenderSDK.framework/Headers/BFInterceptedLog.h b/BugfenderSDK.framework/Headers/BFInterceptedLog.h deleted file mode 100644 index 0669af7..0000000 --- a/BugfenderSDK.framework/Headers/BFInterceptedLog.h +++ /dev/null @@ -1,60 +0,0 @@ -// -// BFInterceptedLog.h -// BugfenderSDK -// -// Created by Fran Montiel on 24/1/23. -// Copyright © 2023 Beenario GmbH. All rights reserved. -// - -#import - -/** - * Intercepted log from NSLog/OSLog - */ -@interface BFInterceptedLog : NSObject - -/** - * Initializes an BFInterceptedLog with a timestamp, text, and log level. - * @note You will usually not need to use this method. - * @param text Text of the log. - * @param level Level of the log. See BFLogLevel enum for possible values. - * @param date Timestamp of the log. - */ --(instancetype _Nonnull) initWithText: (NSString*_Nonnull) text level: (NSInteger)level date: (NSDate*_Nonnull) date; - -/** - * Line in the source file where the log was originated. - */ -@property (nonatomic, assign) NSInteger line; - -/** - * Level of the log. See BFLogLevel enum for possible values. - */ -@property (nonatomic, assign) NSInteger level; - -/** - * Timestamp of the log. - */ -@property (nonatomic, strong) NSDate * _Nonnull date; - -/** - * Tag (or category) of the log. - */ -@property (nonatomic, strong) NSString * _Nonnull tag; - -/** - * Method of the source file where the log was originated. - */ -@property (nonatomic, strong) NSString * _Nonnull method; - -/** - * Source file name where the log was originated. - */ -@property (nonatomic, strong) NSString * _Nonnull file; - -/** - * Text of the log. - */ -@property (nonatomic, strong) NSString * _Nonnull text; - -@end diff --git a/BugfenderSDK.framework/Headers/BFLogInterceptor.h b/BugfenderSDK.framework/Headers/BFLogInterceptor.h deleted file mode 100644 index dc8496e..0000000 --- a/BugfenderSDK.framework/Headers/BFLogInterceptor.h +++ /dev/null @@ -1,24 +0,0 @@ -// -// NSLogInterceptor.h -// BugfenderSDK -// -// Created by Fran Montiel on 24/1/23. -// Copyright © 2023 Beenario GmbH. All rights reserved. -// - -#import -#import "BFInterceptedLog.h" - -/** - * Intercept a log entry from NSLog/OSLog and allow to modify it or to block it. - */ -@protocol BFLogInterceptor - -/** - * Intercept a log entry from NSLog/OSLog and allow to modify it or to block it. - * @param interceptedLog log intercepted - * @return The log entry to be logged. If nil is returned the log entry won't be logged. - */ -- (BFInterceptedLog *)intercept:(BFInterceptedLog *)interceptedLog; - -@end diff --git a/BugfenderSDK.framework/Headers/BFUserFeedbackNavigationController.h b/BugfenderSDK.framework/Headers/BFUserFeedbackNavigationController.h deleted file mode 100644 index 51679ab..0000000 --- a/BugfenderSDK.framework/Headers/BFUserFeedbackNavigationController.h +++ /dev/null @@ -1,53 +0,0 @@ -// -// BFUserFeedbackViewController.h -// BugfenderSDK -// -// Created by Rubén Vázquez Otero on 15/10/2018. -// Copyright © 2018 Beenario GmbH. All rights reserved. -// - -#if TARGET_OS_IOS - -#import "BFUserFeedbackViewController.h" - -NS_ASSUME_NONNULL_BEGIN - -/** - * Navigation View Controller containing a BFUserFeedbackNavigationController as rootViewController - */ -@interface BFUserFeedbackNavigationController : UINavigationController - - - -/** - * Root View Controller containing a table with the textfields used to gather feedback - */ -@property (nonatomic, strong) BFUserFeedbackViewController *feedbackViewController; - -/** - Provides a View Controller to gather the feedback of the users and sent it to Bugfender. - The returning BFUserFeedbackNavigationController has to be presented modally and it has it's own Send and Cancel buttons - - Additionally, it is possible to customize the aspect of the screen accessing BFUserFeedbackNavigationController.feedbackViewController - - @param title Title for the navigation bar - @param hint Short text at the beginning - @param subjectPlaceholder placeholder in the subject textfield - @param messagePlaceholder placeholder in the message textfield - @param sendButtonTitle title for the send button in the navigation bar - @param cancelButtonTitle title for the cancel button - @return BFUserFeedbackNavigationController containing a BFUserFeedbackViewController as root view controller - */ -+ (BFUserFeedbackNavigationController *)userFeedbackViewControllerWithTitle:(NSString *)title - hint:(NSString *)hint - subjectPlaceholder:(NSString *)subjectPlaceholder - messagePlaceholder:(NSString *)messagePlaceholder - sendButtonTitle:(NSString *)sendButtonTitle - cancelButtonTitle:(NSString *)cancelButtonTitle - completion:(void (^)(BOOL feedbackSent, NSURL * _Nullable url))completionBlock; - - -@end - -NS_ASSUME_NONNULL_END -#endif diff --git a/BugfenderSDK.framework/Headers/BFUserFeedbackViewController.h b/BugfenderSDK.framework/Headers/BFUserFeedbackViewController.h deleted file mode 100644 index 93b5f2c..0000000 --- a/BugfenderSDK.framework/Headers/BFUserFeedbackViewController.h +++ /dev/null @@ -1,114 +0,0 @@ -// -// BFUserFeedbackViewController.h -// BugfenderSDK -// -// Created by Rubén Vázquez Otero on 16/10/2018. -// Copyright © 2018 Beenario GmbH. All rights reserved. -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - * BFUserFeedbackViewController provides a basic and configurable view controller to gather feedback from the users - */ -@interface BFUserFeedbackViewController : UITableViewController { - -} - -#pragma mark - Background colors - -/** - The background of the view controller - */ -@property (nonatomic, strong) UIColor *mainBackgroundColor; - -/** - Background for textfields - */ -@property (nonatomic, strong) UIColor *secondaryBackgroundColor; - -#pragma mark - Hint - -/** - The hint is the upper text in the view controller. - Use the hint give instructions to your users or just to thank them for providing feedback - */ -@property (nonatomic, strong) NSString *hint; - -/** - * Font from the hint - */ -@property (nonatomic, strong) UIFont *hintFont; - -/** - * Font color from the hint - */ -@property (nonatomic, strong) UIColor *hintFontColor; - -#pragma mark - Subject - -/** - The subject of the feedback. - Remember to provide a placeholder - */ -@property (nonatomic, strong) UIFont *subjectFont; - -/** - * Font color from the subject textfield - */ -@property (nonatomic, strong) UIColor *subjectFontColor; - -/** - * Font color for the placeholder of the subject textfield - */ -@property (nonatomic, strong) UIColor *subjectPlaceholderFontColor; - -/** - * Subject placeholder - */ -@property (nonatomic, strong) NSString *subjectPlaceholder; - -#pragma mark - Message -/** - The message of the feedback - Remember to provide a placeholder - */ -@property (nonatomic, strong) UIFont *messageFont; - -/** - * Message font color - */ -@property (nonatomic, strong) UIColor *messageFontColor; - -/** - * Message placeholder font color - */ -@property (nonatomic, strong) UIColor *messagePlaceholderFontColor; - -/** - * Message placeholder - */ -@property (nonatomic, strong) NSString *messagePlaceholder; - -#pragma mark - Actions - -/** - * Hide view controller - */ -- (void)dismiss; - -/** - * Send feedback to Bugfender - */ -- (void)sendFeedback; - -/** - Pass a block if you want to be notified after feedback was sent (or not) - */ -@property (nonatomic, copy) void (^completionBlock)(BOOL feedbackSent, NSURL * _Nullable url); - -@end - -NS_ASSUME_NONNULL_END diff --git a/BugfenderSDK.framework/Headers/BugfenderSDK-Swift.h b/BugfenderSDK.framework/Headers/BugfenderSDK-Swift.h deleted file mode 100644 index 995a5c3..0000000 --- a/BugfenderSDK.framework/Headers/BugfenderSDK-Swift.h +++ /dev/null @@ -1,220 +0,0 @@ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -#ifndef BUGFENDERSDK_SWIFT_H -#define BUGFENDERSDK_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() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#include -#include -#include -#include - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# 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 !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if __has_feature(modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#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="BugfenderSDK",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - - -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#pragma clang diagnostic pop -#endif diff --git a/BugfenderSDK.framework/Headers/BugfenderSDK.h b/BugfenderSDK.framework/Headers/BugfenderSDK.h deleted file mode 100644 index cbdcad7..0000000 --- a/BugfenderSDK.framework/Headers/BugfenderSDK.h +++ /dev/null @@ -1,443 +0,0 @@ -// -// BugfenderSDK.h -// BugfenderSDK -// Copyright (c) 2014 Bugfender GmbH. All rights reserved. -// - -#import -#import "BFLogInterceptor.h" -#import "BFDefaultLogInterceptor.h" - -#if TARGET_OS_IOS - -#import "BFUserFeedbackNavigationController.h" - -#endif - -NS_ASSUME_NONNULL_BEGIN - -#define BFLibraryVersionNumber_0_1_0 0 -#define BFLibraryVersionNumber_0_2_0 1 -#define BFLibraryVersionNumber_0_2_1 2 -#define BFLibraryVersionNumber_0_3_0 3 -#define BFLibraryVersionNumber_0_3_1 4 -#define BFLibraryVersionNumber_0_3_2 5 -#define BFLibraryVersionNumber_0_3_3 6 -#define BFLibraryVersionNumber_0_3_4 7 -#define BFLibraryVersionNumber_0_3_5 8 -#define BFLibraryVersionNumber_0_3_6 9 -#define BFLibraryVersionNumber_0_3_7 10 -#define BFLibraryVersionNumber_0_3_8 11 -#define BFLibraryVersionNumber_0_3_9 12 -#define BFLibraryVersionNumber_0_3_10 13 -#define BFLibraryVersionNumber_0_3_11 14 -#define BFLibraryVersionNumber_0_3_12 15 -#define BFLibraryVersionNumber_0_3_13 16 -#define BFLibraryVersionNumber_0_3_14 17 -#define BFLibraryVersionNumber_0_3_15 18 -#define BFLibraryVersionNumber_0_3_16 19 -#define BFLibraryVersionNumber_0_3_17 20 -#define BFLibraryVersionNumber_0_3_18 21 -#define BFLibraryVersionNumber_0_3_19 22 -#define BFLibraryVersionNumber_0_3_20 23 -#define BFLibraryVersionNumber_0_3_21 24 -#define BFLibraryVersionNumber_0_3_22 25 -#define BFLibraryVersionNumber_0_3_23 26 -#define BFLibraryVersionNumber_0_3_24 27 -#define BFLibraryVersionNumber_0_3_25 28 -#define BFLibraryVersionNumber_0_3_26 29 -#define BFLibraryVersionNumber_0_3_27 30 -#define BFLibraryVersionNumber_1_4_0 31 -#define BFLibraryVersionNumber_1_4_1 32 -#define BFLibraryVersionNumber_1_4_2 33 -#define BFLibraryVersionNumber_1_4_3 34 -#define BFLibraryVersionNumber_1_4_4 34 // Mistake: We released the version without incrementing the number. -#define BFLibraryVersionNumber_1_4_5 36 -#define BFLibraryVersionNumber_1_4_6 37 -#define BFLibraryVersionNumber_1_4_7 38 -#define BFLibraryVersionNumber_1_4_8 39 -#define BFLibraryVersionNumber_1_4_9 40 -#define BFLibraryVersionNumber_1_4_10 41 -#define BFLibraryVersionNumber_1_5_0 42 -#define BFLibraryVersionNumber_1_5_1 43 -#define BFLibraryVersionNumber_1_5_2 44 -#define BFLibraryVersionNumber_1_5_3 45 -#define BFLibraryVersionNumber_1_5_4 46 -#define BFLibraryVersionNumber_1_5_5 47 -#define BFLibraryVersionNumber_1_5_6 48 -#define BFLibraryVersionNumber_1_6_0 49 -#define BFLibraryVersionNumber_1_6_1 50 -#define BFLibraryVersionNumber_1_6_2 51 -#define BFLibraryVersionNumber_1_6_3 52 -#define BFLibraryVersionNumber_1_6_4 53 -#define BFLibraryVersionNumber_1_6_5 54 -#define BFLibraryVersionNumber_1_6_6 55 -#define BFLibraryVersionNumber_1_7_0 56 -#define BFLibraryVersionNumber_1_8_0 57 -#define BFLibraryVersionNumber_1_9_0 58 -#define BFLibraryVersionNumber_1_9_1 59 -#define BFLibraryVersionNumber_1_9_2 60 -#define BFLibraryVersionNumber_1_10_0 61 -#define BFLibraryVersionNumber_1_10_1 62 -#define BFLibraryVersionNumber_1_10_2 63 -#define BFLibraryVersionNumber_1_10_3 64 -#define BFLibraryVersionNumber_1_10_4 65 -#define BFLibraryVersionNumber_1_10_5 66 -#define BFLibraryVersionNumber_1_10_6 67 -#define BFLibraryVersionNumber_1_11_0 68 -#define BFLibraryVersionNumber_1_12_0 69 -#define BFLibraryVersionNumber_1_12_1 70 -#define BFLibraryVersionNumber_1_12_2 71 -#define BFLibraryVersionNumber_1_13_0 72 -#define BFLibraryVersionNumber_1_13_1 73 -#define BFLibraryVersionNumber_1_13_2 74 - -/** - * Current Bugfender version number. - * @note This value can be compared with the defined macros BFLibraryVersionNumber_X_Y_Z. - **/ -FOUNDATION_EXPORT double const BFLibraryVersionNumber; - -/** Defines the level of a log */ -typedef NS_ENUM(NSUInteger, BFLogLevel) -{ - /** Default/Debug log level */ - BFLogLevelDefault = 0, - /** Warning log level */ - BFLogLevelWarning = 1, - /** Error log level */ - BFLogLevelError = 2, - /** Trace log level */ - BFLogLevelTrace = 3, - /** Info log level */ - BFLogLevelInfo = 4, - /** Fatal log level */ - BFLogLevelFatal = 5 -}; - -#define BFLog(args, ...) BFLog2(BFLogLevelDefault, nil, args, ##__VA_ARGS__) -#define BFLogWarn(args, ...) BFLog2(BFLogLevelWarning, nil, args, ##__VA_ARGS__) -#define BFLogErr(args, ...) BFLog2(BFLogLevelError, nil, args, ##__VA_ARGS__) -#define BFLogTrace(args, ...) BFLog2(BFLogLevelTrace, nil, args, ##__VA_ARGS__) -#define BFLogInfo(args, ...) BFLog2(BFLogLevelInfo, nil, args, ##__VA_ARGS__) -#define BFLogFatal(args, ...) BFLog2(BFLogLevelFatal, nil, args, ##__VA_ARGS__) - -#define BFLog2(logLevel, tagName, fmt, ...) \ -[Bugfender logWithLineNumber:__LINE__ method:[NSString stringWithFormat:@"%s",__PRETTY_FUNCTION__] file:[[NSString stringWithFormat:@"%s",__FILE__] lastPathComponent] level:logLevel tag:tagName message:fmt == nil ? @"" : [NSString stringWithFormat:fmt, ##__VA_ARGS__]] - - - -/** - * Main Bugfender interface. - **/ -@interface Bugfender : NSObject - -/** ******************************************************************** ** - * @name Configuration - ** ******************************************************************** **/ - -/** - * Sets the URL of the API - * @note Usage of this function is not necessary in the general use case. Please use exclusively when - * directed from technical support. - * @warning This method must be called before activateLogger. - * @param url URL of the API to use - */ -+ (void)setApiURL:(NSURL*)url; - -/** - * Sets the URL of the Bugfender Dashboard - * @note Usage of this function is not necessary in the general use case. Please use exclusively when - * directed from technical support. - * @warning This method must be called before activateLogger. - * @param url base URL of the Bugfender's dashboard - */ -+ (void)setBaseURL:(NSURL*)url; - -/** - * Activates the Bugfender logger for a specific app. - * @param appKey The app key of the Bugfender application, get it in bugfender.com - * @warning If Bugfender has already been initialized with a different app key `NSInvalidArgumentException` will be thrown. - * @note This method needs to be called before any `BFLog` call, otherwise they will be ignored. - **/ -+ (void)activateLogger:(NSString*)appKey; - -/** - * Returns the app key. - * @return The app key, or nil if Bugfender has not been initialized. - **/ -+ (nullable NSString*)appKey; - -/** - * Maximum space available to store local logs. This value is represented in bytes. Default value is 5242880 (1024*1024*5 = 5MB). - * @note If maximumLocalStorageSize is 0 (zero), then there is no limit and everything will be stored locally. - **/ -+ (NSUInteger)maximumLocalStorageSize; - -/** - * Set the maximum space available to store local logs. This value is represented in bytes. There's a limit of 50 MB. - * @param maximumLocalStorageSize Maximum size in bytes. Range accepted is from 1 MB to 50 MB. If the value provider - * is below this range it will be set to 1 MB, if is above the range it will be set to 50 MB - **/ -+ (void)setMaximumLocalStorageSize:(NSUInteger)maximumLocalStorageSize; - -/** - * Returns the device identifier used to identify the current device in the Bugfender website. - * The device identifier is constant while the application is installed in the device. - * @note This string can not be changed, but can be shown to the user or sent to your server, in order to - * keep a relationship between a Bugfender device and a user or some other important event in your application. - * - * @return A string identifying the device. - **/ -+ (NSString*)deviceIdentifier __deprecated_msg("Use deviceIdentifierUrl instead."); - -/** - * Returns a URL linking to the current device in bugfender. - * The device identifier is constant while the application is installed in the device. - * @note This url can be sent to your server and used to create integrations with other services. Also can be stored to - * keep a relationship between a Bugfender device and a user or some other important event in your application. - * - * @return URL linking to the device in Bugfender - **/ -+ (nullable NSURL *)deviceIdentifierUrl; - -/** - * - * The session identifier is constant while the application is running. - * @return A string identifying the current session. - */ -+ (nullable NSString *)sessionIdentifier __deprecated_msg("Use sessionIdentifierUrl instead."); - -/** - * - * The session identifier url is constant while the application is running. - * @note This url can be sent to your server and used to create integrations with other services. - * @return A URL linking to the current session in Bugfender. - */ -+ (nullable NSURL *)sessionIdentifierUrl; - -/** - * Synchronizes all logs with the server all the time, regardless if this device is enabled or not. - * @note This method is useful when the logs should be sent to the server - * regardless if the device is enabled in the Bugfender Console. - * - * Logs are synchronized continuously while forceEnabled is active. - * - * This command can be called anytime, and will take effect the next time the device is online. - * @param enabled Whether logs should be sent regardless of the Bugfender Console settings. - */ -+(void) setForceEnabled:(BOOL)enabled; - -/** - * Gets the status of forceEnabled. - * @see setForceEnabled - */ -+(BOOL) forceEnabled; - -/** - * Prints messages to console for debugging purposes. - * @param enabled Whether printing to console is enabled or not. By default it is enabled. - */ -+(void) setPrintToConsole:(BOOL)enabled; - -/** - * Gets the status of printToConsole. printToConsole prints messages to console. By default it is enabled. - */ -+(BOOL) printToConsole; - -#if TARGET_OS_IOS -/** - * Logs all actions performed and screen changes in the application, such as button touches, swipes and gestures. - */ -+(void)enableUIEventLogging; - -/** - * Logs all actions performed and screen changes in the application, such as button touches, swipes and gestures. - * @param ignoredViewsTags Tags of views that should not be observed and logged by Bugfender - */ -+ (void)enableUIEventLoggingWithIgnoredViewsTags:(NSArray *)ignoredViewsTags; - -#endif - -/** - * Enable crash reporting tool functionality. - */ -+(void)enableCrashReporting; - -/** ******************************************************************** ** - * @name Device details - ** ******************************************************************** **/ - -/** - * Sets the name for the device. If the Device Name is not set, then the iOS standard device name will be automatically sent - * @note This method has to be called prior to activate logger. Otherwise, an exception will be thrown. - * @param deviceName Device name that will be shown in the Dashboard. - */ -+(void)overrideDeviceName:(NSString *)deviceName __deprecated_msg("Use setDeviceString:forKey: instead, which allows to change the name once set. This function will be removed in a future version."); - -/** - * Sets a device detail with boolean type. - * @note Similarly to an NSDictionary, where you can set key-value pairs - * related to a Bugfender device. - * @param b A boolean value. - * @param key Key. - */ -+(void)setDeviceBOOL:(BOOL)b forKey:(NSString*)key; -/** - * Sets a device detail with string type. - * @note Similarly to an NSDictionary, where you can set key-value pairs - * related to a Bugfender device. - * @param s A string value. The maximum length allowed is 192 bytes. - * @param key Key. - */ -+(void)setDeviceString:(NSString*)s forKey:(NSString*)key; -/** - * Sets a device detail with integer type. - * @note Similarly to an NSDictionary, where you can set key-value pairs - * related to a Bugfender device. - * @param i An UInt64 value. - * @param key Key. - */ -+(void)setDeviceInteger:(UInt64)i forKey:(NSString*)key; -/** - * Sets a device detail with double type. - * @note Similarly to an NSDictionary, where you can set key-value pairs - * related to a Bugfender device. - * @param d A double value. - * @param key Key. - */ -+(void)setDeviceDouble:(double)d forKey:(NSString*)key; -/** - * Removes a device detail. - * @note Similarly to an NSDictionary, where you can remove an existent key-value pair - * related to a Bugfender device by indicating its key. - * @param key Key. - */ -+(void)removeDeviceKey:(NSString*)key; - -/** ******************************************************************** ** - * @name Logging - ** ******************************************************************** **/ - -/** - * Bugfender extended interface for logging, which takes a simple string as log message. - * @note This command can be called anytime, and will take effect the next time the device is online. - * For efficiency, several log lines can be sent together to the server with some delay. - * @param lineNumber The line number of the log. - * @param method The method where the log has happened. - * @param file The file where the log has happened. - * @param level Log level. - * @param tag Tag to be applied to the log line. - * @param message Message to be logged. The message will be logged verbatim, no interpretation will be performed. - * @note In Swift, prefer to use bfprint() in order to get file name and line number filled in automatically. In Objective-C you can use the BFLog or BFLog2 macros. - **/ -+ (void) logWithLineNumber:(NSInteger)lineNumber method:(NSString*)method file:(NSString*)file level:(BFLogLevel)level tag:(nullable NSString*)tag message:(NSString*)message NS_SWIFT_NAME(log(lineNumber:method:file:level:tag:message:)); - -/** ******************************************************************** ** - * @name Commands - ** ******************************************************************** **/ - -/** - * Synchronizes all logs with the server once, regardless if this device is enabled or not. - * @note This method is useful when an error condition is detected and the logs should be sent to - * the server for analysis, regardless if the device is enabled in the Bugfender Console. - * - * Logs are synchronized only once. After that, the logs are again sent according to the enabled flag - * in the Bugfender Console. - * - * This command can be called anytime, and will take effect the next time the device is online. - */ -+ (void) forceSendOnce; - -#pragma mark - Issues -/** - * Sends an issue - * @note Sending an issue forces the logs of the current session being sent - * to the server, and marks the session so that it is highlighted in the web console. - * @param title Short description of the issue. - * @param text Full details of the issue. Markdown format is accepted. - * @return the issue identifier - */ -+ (nullable NSString *)sendIssueWithTitle:(NSString *)title text:(NSString *)text __deprecated_msg("Use sendIssueReturningUrlWithTitle:text: instead."); - -/** - * Sends an issue - * @note Sending an issue forces the logs of the current session being sent - * to the server, and marks the session so that it is highlighted in the web console. - * @param title Short description of the issue. - * @param text Full details of the issue. Markdown format is accepted. - * @return an URL linking to the issue in Bugfender - */ -+ (nullable NSURL *)sendIssueReturningUrlWithTitle:(NSString *)title text:(NSString *)text; - -#pragma mark - Crashes - -/** - * Sends a crash - * @note This method will send immediately a crash to the server - * it doesn't take into account if crash reporting is enabled or not - * @param title Short description of the crash. - * @param text Full details of the crarsh. - * @return an URL linking to the crash in Bugfender - */ -+ (nullable NSURL *)sendCrashWithTitle:(NSString *)title text:(NSString *)text; - -#if TARGET_OS_IOS - -#pragma mark - User Feedback - -/** - Provides a View Controller to gather the feedback of the users and sent it to Bugfender. - The returning BFUserFeedbackNavigationController has to be presented modally and it has it's own Send and Cancel buttons - - Additionally, it is possible to customize the aspect of the screen accessing BFUserFeedbackNavigationController.feedbackViewController - - @param title Title for the navigation bar - @param hint Short text at the beginning - @param subjectPlaceholder placeholder in the subject textfield - @param messagePlaceholder placeholder in the message textfield - @param sendButtonTitle title for the send button in the navigation bar - @param cancelButtonTitle title for the cancel button - @return BFUserFeedbackNavigationController containing a BFUserFeedbackViewController as root view controller - */ -+ (BFUserFeedbackNavigationController *)userFeedbackViewControllerWithTitle:(NSString *)title - hint:(NSString *)hint - subjectPlaceholder:(NSString *)subjectPlaceholder - messagePlaceholder:(NSString *)messagePlaceholder - sendButtonTitle:(NSString *)sendButtonTitle - cancelButtonTitle:(NSString *)cancelButtonTitle - completion:(void (^ _Nullable )(BOOL feedbackSent, NSURL * _Nullable url))completionBlock; - -#endif - -/** - Allows to create custom UI to gather user feedback and send to Bugfender. - - @param subject subject of the feedback - @param message message of the feedback - */ -+ (void)sendUserFeedbackWithSubject:(NSString *)subject message:(NSString *)message __deprecated_msg("Use sendUserFeedbackReturningUrlWithSubject:message: instead."); - -/** - Allows to create custom UI to gather user feedback and send to Bugfender. - - @param subject subject of the feedback - @param message message of the feedback - @return URL linking to Bugfender - */ -+ (nullable NSURL *)sendUserFeedbackReturningUrlWithSubject:(NSString *)subject message:(NSString *)message; - -/** - * Logs all logs written via NSLog or OSLog. - */ -+ (void)enableNSLogLogging API_AVAILABLE(macos(10.15), ios(15.0), tvos(15.0), watchos(8.0)); - -/** - * Logs all logs written via NSLog or OSLog. - * @param interceptor intercept the logs and allow to modify or to block them before they are sent to Bugfender - */ -+ (void)enableNSLogLoggingWithInterceptor:(id )interceptor API_AVAILABLE(macos(10.15), ios(15.0), tvos(15.0), watchos(8.0)) NS_SWIFT_NAME(enableNSLogLogging(withInterceptor:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/BugfenderSDK.framework/Info.plist b/BugfenderSDK.framework/Info.plist deleted file mode 100644 index 1c95da6..0000000 Binary files a/BugfenderSDK.framework/Info.plist and /dev/null differ diff --git a/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc deleted file mode 100644 index 0d02e0d..0000000 Binary files a/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc and /dev/null differ diff --git a/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface deleted file mode 100644 index ef6ab86..0000000 --- a/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ /dev/null @@ -1,19 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target arm64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name BugfenderSDK -@_exported import BugfenderSDK -import Foundation -import Swift -import _Concurrency -extension BugfenderSDK.Bugfender { - public class func print(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) - public class func error(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) - public class func warning(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -} -public func BFLog(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogWarn(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogErr(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogTrace(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogInfo(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogFatal(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func bfprint(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) diff --git a/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftmodule b/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftmodule deleted file mode 100644 index f2689b4..0000000 Binary files a/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftmodule and /dev/null differ diff --git a/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.swiftdoc b/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.swiftdoc deleted file mode 100644 index 952c752..0000000 Binary files a/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.swiftdoc and /dev/null differ diff --git a/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.swiftinterface b/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.swiftinterface deleted file mode 100644 index 23670e5..0000000 --- a/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.swiftinterface +++ /dev/null @@ -1,19 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target arm64-apple-ios11.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name BugfenderSDK -@_exported import BugfenderSDK -import Foundation -import Swift -import _Concurrency -extension BugfenderSDK.Bugfender { - public class func print(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) - public class func error(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) - public class func warning(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -} -public func BFLog(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogWarn(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogErr(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogTrace(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogInfo(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogFatal(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func bfprint(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) diff --git a/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.swiftmodule b/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.swiftmodule deleted file mode 100644 index 4d5caa8..0000000 Binary files a/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.swiftmodule and /dev/null differ diff --git a/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc deleted file mode 100644 index 0418f8c..0000000 Binary files a/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and /dev/null differ diff --git a/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface deleted file mode 100644 index bcdd1c7..0000000 --- a/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ /dev/null @@ -1,19 +0,0 @@ -// swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target x86_64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name BugfenderSDK -@_exported import BugfenderSDK -import Foundation -import Swift -import _Concurrency -extension BugfenderSDK.Bugfender { - public class func print(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) - public class func error(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) - public class func warning(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -} -public func BFLog(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogWarn(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogErr(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogTrace(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogInfo(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogFatal(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func bfprint(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) diff --git a/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftmodule b/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftmodule deleted file mode 100644 index fac4572..0000000 Binary files a/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftmodule and /dev/null differ diff --git a/BugfenderSDK.framework/Modules/module.modulemap b/BugfenderSDK.framework/Modules/module.modulemap deleted file mode 100644 index bbe235f..0000000 --- a/BugfenderSDK.framework/Modules/module.modulemap +++ /dev/null @@ -1,11 +0,0 @@ -framework module BugfenderSDK { - umbrella header "BugfenderSDK.h" - - export * - module * { export * } -} - -module BugfenderSDK.Swift { - header "BugfenderSDK-Swift.h" - requires objc -} diff --git a/BugfenderSDK.framework/PrivacyInfo.xcprivacy b/BugfenderSDK.framework/PrivacyInfo.xcprivacy deleted file mode 100644 index e9c566d..0000000 --- a/BugfenderSDK.framework/PrivacyInfo.xcprivacy +++ /dev/null @@ -1,34 +0,0 @@ - - - - - NSPrivacyTracking - - NSPrivacyCollectedDataTypes - - - NSPrivacyCollectedDataType - NSPrivacyCollectedDataTypeOtherDiagnosticData - NSPrivacyCollectedDataTypeLinked - - NSPrivacyCollectedDataTypeTracking - - NSPrivacyCollectedDataTypePurposes - - NSPrivacyCollectedDataTypePurposeOther - - - - NSPrivacyAccessedAPITypes - - - NSPrivacyAccessedAPIType - NSPrivacyAccessedAPICategoryUserDefaults - NSPrivacyAccessedAPITypeReasons - - CA92.1 - - - - - diff --git a/BugfenderSDK.podspec b/BugfenderSDK.podspec index 99b8a58..33dafa4 100644 --- a/BugfenderSDK.podspec +++ b/BugfenderSDK.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = 'BugfenderSDK' - s.version = '1.13.2' - s.ios.deployment_target = '11.0' + s.version = '2.0.0' + s.ios.deployment_target = '12.0' s.license = { :type => 'Commercial', :text => 'See https://bugfender.com/terms-of-service/' } s.summary = 'Bugfender: a mobile remote logger' s.description = 'A modern remote logger tailor-made for mobile development.' diff --git a/BugfenderSDK.xcframework/Info.plist b/BugfenderSDK.xcframework/Info.plist index 6390cf0..0a0384c 100644 --- a/BugfenderSDK.xcframework/Info.plist +++ b/BugfenderSDK.xcframework/Info.plist @@ -5,6 +5,8 @@ AvailableLibraries + BinaryPath + BugfenderSDK.framework/BugfenderSDK LibraryIdentifier ios-arm64_x86_64-simulator LibraryPath @@ -20,31 +22,35 @@ simulator + BinaryPath + BugfenderSDK.framework/Versions/A/BugfenderSDK LibraryIdentifier - ios-arm64 + ios-arm64_x86_64-maccatalyst LibraryPath BugfenderSDK.framework SupportedArchitectures arm64 + x86_64 SupportedPlatform ios + SupportedPlatformVariant + maccatalyst + BinaryPath + BugfenderSDK.framework/BugfenderSDK LibraryIdentifier - ios-arm64_x86_64-maccatalyst + ios-arm64 LibraryPath BugfenderSDK.framework SupportedArchitectures arm64 - x86_64 SupportedPlatform ios - SupportedPlatformVariant - maccatalyst CFBundlePackageType diff --git a/BugfenderSDK.xcframework/_CodeSignature/CodeDirectory b/BugfenderSDK.xcframework/_CodeSignature/CodeDirectory new file mode 100644 index 0000000..3bbf84a Binary files /dev/null and b/BugfenderSDK.xcframework/_CodeSignature/CodeDirectory differ diff --git a/BugfenderSDK.xcframework/_CodeSignature/CodeRequirements b/BugfenderSDK.xcframework/_CodeSignature/CodeRequirements new file mode 100644 index 0000000..ad1cdb8 Binary files /dev/null and b/BugfenderSDK.xcframework/_CodeSignature/CodeRequirements differ diff --git a/BugfenderSDK.xcframework/_CodeSignature/CodeRequirements-1 b/BugfenderSDK.xcframework/_CodeSignature/CodeRequirements-1 new file mode 100644 index 0000000..9d7ccee Binary files /dev/null and b/BugfenderSDK.xcframework/_CodeSignature/CodeRequirements-1 differ diff --git a/BugfenderSDK.xcframework/_CodeSignature/CodeResources b/BugfenderSDK.xcframework/_CodeSignature/CodeResources new file mode 100644 index 0000000..de37355 --- /dev/null +++ b/BugfenderSDK.xcframework/_CodeSignature/CodeResources @@ -0,0 +1,933 @@ + + + + + files + + ios-arm64/BugfenderSDK.framework/BugfenderSDK + + iSf4UFDaGYw+kbYeG4BoKu2O82A= + + ios-arm64/BugfenderSDK.framework/Headers/BFDefaultLogInterceptor.h + + HM3OfaV/2/FAmMiZhowi7Z+XD3k= + + ios-arm64/BugfenderSDK.framework/Headers/BFInterceptedLog.h + + InKoTT1wl9WenJUaI/UucvEsjfE= + + ios-arm64/BugfenderSDK.framework/Headers/BFLogInterceptor.h + + HEA76HZiRCGnFUYr6egoRlxIx/I= + + ios-arm64/BugfenderSDK.framework/Headers/BFUserFeedbackNavigationController.h + + pgNFegt5zvOiPUxMA25ZNeKFPoM= + + ios-arm64/BugfenderSDK.framework/Headers/BFUserFeedbackViewController.h + + 2nyi/Du3qqDKGIjd2XYC7Mvm6BU= + + ios-arm64/BugfenderSDK.framework/Headers/BugfenderSDK-Swift.h + + RsUZcTfCumACgr9IH7rUTBhjCuQ= + + ios-arm64/BugfenderSDK.framework/Headers/BugfenderSDK.h + + voOPfrOlcipjPmRnlC4EwyrwIec= + + ios-arm64/BugfenderSDK.framework/Info.plist + + Mu7tKZO0BOl6DyBT3D8W71l2IAQ= + + ios-arm64/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.abi.json + + MoPAmppgZF6iBzZ1PINp9d88llc= + + ios-arm64/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.private.swiftinterface + + 1wqrHoU5Hbf+QT3kNn57QoqGg/Q= + + ios-arm64/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.swiftdoc + + y7De14OdfnMncOrXXrsVIVdb7kM= + + ios-arm64/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.swiftinterface + + 1wqrHoU5Hbf+QT3kNn57QoqGg/Q= + + ios-arm64/BugfenderSDK.framework/Modules/module.modulemap + + x/cXF6lKRNspReEtzJCSW0fNGB4= + + ios-arm64/BugfenderSDK.framework/PrivacyInfo.xcprivacy + + hvWgeSSd3CM7mvMNrAyctw4z0FY= + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/BugfenderSDK + + BI0H44lo/19okIdaJMVnqs51o1o= + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Headers/BFDefaultLogInterceptor.h + + HM3OfaV/2/FAmMiZhowi7Z+XD3k= + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Headers/BFInterceptedLog.h + + InKoTT1wl9WenJUaI/UucvEsjfE= + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Headers/BFLogInterceptor.h + + HEA76HZiRCGnFUYr6egoRlxIx/I= + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Headers/BFUserFeedbackNavigationController.h + + pgNFegt5zvOiPUxMA25ZNeKFPoM= + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Headers/BFUserFeedbackViewController.h + + 2nyi/Du3qqDKGIjd2XYC7Mvm6BU= + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Headers/BugfenderSDK-Swift.h + + ecvyv9RbFVvMRUrHbOatPc5/kIE= + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Headers/BugfenderSDK.h + + voOPfrOlcipjPmRnlC4EwyrwIec= + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-macabi.abi.json + + MoPAmppgZF6iBzZ1PINp9d88llc= + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface + + a8BQ44iJ323lEFydYfIFfdOMKHM= + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-macabi.swiftdoc + + KcDmA2a3XO22kIkLvI5VxbQWqWY= + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-macabi.swiftinterface + + a8BQ44iJ323lEFydYfIFfdOMKHM= + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-macabi.abi.json + + MoPAmppgZF6iBzZ1PINp9d88llc= + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface + + 5UW5UqFZgxFi19af/zk3umFjyiY= + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-macabi.swiftdoc + + KmbGsfJbgAorTX9bLR2AD3Gu89U= + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-macabi.swiftinterface + + 5UW5UqFZgxFi19af/zk3umFjyiY= + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/module.modulemap + + x/cXF6lKRNspReEtzJCSW0fNGB4= + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Resources/Info.plist + + lzd9VlIBafSF+xIBnJaDPrIfK/0= + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Resources/PrivacyInfo.xcprivacy + + hvWgeSSd3CM7mvMNrAyctw4z0FY= + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/BugfenderSDK + + IS2znJm7xiNryMHheSAitUronfg= + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Headers/BFDefaultLogInterceptor.h + + HM3OfaV/2/FAmMiZhowi7Z+XD3k= + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Headers/BFInterceptedLog.h + + InKoTT1wl9WenJUaI/UucvEsjfE= + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Headers/BFLogInterceptor.h + + HEA76HZiRCGnFUYr6egoRlxIx/I= + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Headers/BFUserFeedbackNavigationController.h + + pgNFegt5zvOiPUxMA25ZNeKFPoM= + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Headers/BFUserFeedbackViewController.h + + 2nyi/Du3qqDKGIjd2XYC7Mvm6BU= + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Headers/BugfenderSDK-Swift.h + + ecvyv9RbFVvMRUrHbOatPc5/kIE= + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Headers/BugfenderSDK.h + + voOPfrOlcipjPmRnlC4EwyrwIec= + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Info.plist + + PoJAks98wngNth2fp/m0mlSzqrs= + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.abi.json + + MoPAmppgZF6iBzZ1PINp9d88llc= + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + M6fmzoaC4UCxVa1tgpV+gItiDMA= + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc + + n0XWn5yLEHw6l5BgKwqCARAp6tg= + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface + + M6fmzoaC4UCxVa1tgpV+gItiDMA= + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json + + MoPAmppgZF6iBzZ1PINp9d88llc= + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface + + xJGQ3WnTgTnyX71VWXKG4uuv8f4= + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc + + EwNM64Lr3Jsud4BoDRsMnRIFfXA= + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface + + xJGQ3WnTgTnyX71VWXKG4uuv8f4= + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/module.modulemap + + x/cXF6lKRNspReEtzJCSW0fNGB4= + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/PrivacyInfo.xcprivacy + + hvWgeSSd3CM7mvMNrAyctw4z0FY= + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/_CodeSignature/CodeResources + + 3nuhG8pi4ZnbS5fM0FA1LSu9fjI= + + + files2 + + ios-arm64/BugfenderSDK.framework/BugfenderSDK + + hash + + iSf4UFDaGYw+kbYeG4BoKu2O82A= + + hash2 + + LZhp9l4fVy+vX4bIGGEEuKCHlaqrz+/TPT1SouGy9Wg= + + + ios-arm64/BugfenderSDK.framework/Headers/BFDefaultLogInterceptor.h + + hash + + HM3OfaV/2/FAmMiZhowi7Z+XD3k= + + hash2 + + RPzjmSJ0KeLiYXq9hGrpzX/YhmMaxX5QUPFjOrC9+rs= + + + ios-arm64/BugfenderSDK.framework/Headers/BFInterceptedLog.h + + hash + + InKoTT1wl9WenJUaI/UucvEsjfE= + + hash2 + + UcwfFY0qkHqthVY2AufNK+Eps9AsOCdPr/1xz3EXsBg= + + + ios-arm64/BugfenderSDK.framework/Headers/BFLogInterceptor.h + + hash + + HEA76HZiRCGnFUYr6egoRlxIx/I= + + hash2 + + N4IIYmip6wsKAxkKJ7CKK95v6mHIkVoyURQH938ca5c= + + + ios-arm64/BugfenderSDK.framework/Headers/BFUserFeedbackNavigationController.h + + hash + + pgNFegt5zvOiPUxMA25ZNeKFPoM= + + hash2 + + l8gcWZ/QAHe/vDz+pEzNEUS0JBQ3UAKqilS9QX0XGxE= + + + ios-arm64/BugfenderSDK.framework/Headers/BFUserFeedbackViewController.h + + hash + + 2nyi/Du3qqDKGIjd2XYC7Mvm6BU= + + hash2 + + erKOMKGGxHhi9xZCBIYJTISwyaA0bXoGP3dOUh15uaE= + + + ios-arm64/BugfenderSDK.framework/Headers/BugfenderSDK-Swift.h + + hash + + RsUZcTfCumACgr9IH7rUTBhjCuQ= + + hash2 + + 3DpemkF92M1zj7QJ3y5+WtvqM1w2CucG144fxr8qcZA= + + + ios-arm64/BugfenderSDK.framework/Headers/BugfenderSDK.h + + hash + + voOPfrOlcipjPmRnlC4EwyrwIec= + + hash2 + + gJNs1jgKK8Bg5J0W/IY1Y5sCZEPntTo92ZNlwyVehrc= + + + ios-arm64/BugfenderSDK.framework/Info.plist + + hash + + Mu7tKZO0BOl6DyBT3D8W71l2IAQ= + + hash2 + + oQfTa5xP0DXiqMdE4tWsvgcH6/4pZgCzJ8OxTPOeJxY= + + + ios-arm64/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.abi.json + + hash + + MoPAmppgZF6iBzZ1PINp9d88llc= + + hash2 + + h5p1XIZb8xozu4Ge0xdAbKx/K28709JXEpo2Eo8bhzk= + + + ios-arm64/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.private.swiftinterface + + hash + + 1wqrHoU5Hbf+QT3kNn57QoqGg/Q= + + hash2 + + ykASXG00c/EbJHXa+ivuCIDzBzeuoPjMS/uzCQ2ErEY= + + + ios-arm64/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.swiftdoc + + hash + + y7De14OdfnMncOrXXrsVIVdb7kM= + + hash2 + + 23/m1peycAHkRN1S2BJ64FvlLbVmj1dMjWOgwIfMU2g= + + + ios-arm64/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.swiftinterface + + hash + + 1wqrHoU5Hbf+QT3kNn57QoqGg/Q= + + hash2 + + ykASXG00c/EbJHXa+ivuCIDzBzeuoPjMS/uzCQ2ErEY= + + + ios-arm64/BugfenderSDK.framework/Modules/module.modulemap + + hash + + x/cXF6lKRNspReEtzJCSW0fNGB4= + + hash2 + + wzagRleOdzlpLhvfj4TWCu3QhjNS5G9PKK5mP8nzzLc= + + + ios-arm64/BugfenderSDK.framework/PrivacyInfo.xcprivacy + + hash + + hvWgeSSd3CM7mvMNrAyctw4z0FY= + + hash2 + + 8Bw1x3CoeC5gLRbhV0CWwxI3HmL64X/ikUs5sXB+e54= + + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/BugfenderSDK + + symlink + Versions/Current/BugfenderSDK + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Headers + + symlink + Versions/Current/Headers + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Modules + + symlink + Versions/Current/Modules + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Resources + + symlink + Versions/Current/Resources + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/BugfenderSDK + + hash + + BI0H44lo/19okIdaJMVnqs51o1o= + + hash2 + + 1WKE3QpPkbYQEztl9USgA2JOy5nl1GkkUCsDtuQvvsc= + + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Headers/BFDefaultLogInterceptor.h + + hash + + HM3OfaV/2/FAmMiZhowi7Z+XD3k= + + hash2 + + RPzjmSJ0KeLiYXq9hGrpzX/YhmMaxX5QUPFjOrC9+rs= + + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Headers/BFInterceptedLog.h + + hash + + InKoTT1wl9WenJUaI/UucvEsjfE= + + hash2 + + UcwfFY0qkHqthVY2AufNK+Eps9AsOCdPr/1xz3EXsBg= + + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Headers/BFLogInterceptor.h + + hash + + HEA76HZiRCGnFUYr6egoRlxIx/I= + + hash2 + + N4IIYmip6wsKAxkKJ7CKK95v6mHIkVoyURQH938ca5c= + + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Headers/BFUserFeedbackNavigationController.h + + hash + + pgNFegt5zvOiPUxMA25ZNeKFPoM= + + hash2 + + l8gcWZ/QAHe/vDz+pEzNEUS0JBQ3UAKqilS9QX0XGxE= + + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Headers/BFUserFeedbackViewController.h + + hash + + 2nyi/Du3qqDKGIjd2XYC7Mvm6BU= + + hash2 + + erKOMKGGxHhi9xZCBIYJTISwyaA0bXoGP3dOUh15uaE= + + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Headers/BugfenderSDK-Swift.h + + hash + + ecvyv9RbFVvMRUrHbOatPc5/kIE= + + hash2 + + +VZJUtL+V+u3+cnec8cLK6r5xzk7EV3zK/PW6JBWAzQ= + + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Headers/BugfenderSDK.h + + hash + + voOPfrOlcipjPmRnlC4EwyrwIec= + + hash2 + + gJNs1jgKK8Bg5J0W/IY1Y5sCZEPntTo92ZNlwyVehrc= + + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-macabi.abi.json + + hash + + MoPAmppgZF6iBzZ1PINp9d88llc= + + hash2 + + h5p1XIZb8xozu4Ge0xdAbKx/K28709JXEpo2Eo8bhzk= + + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface + + hash + + a8BQ44iJ323lEFydYfIFfdOMKHM= + + hash2 + + o8Y4+r1zzyFNMa75uqF9gjXZ8meyirNrFRq7r740Cyo= + + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-macabi.swiftdoc + + hash + + KcDmA2a3XO22kIkLvI5VxbQWqWY= + + hash2 + + t+g3CJ3BuGCB53HVH1gFFOsZFcuVKJ6btjL1KmlY7Nw= + + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-macabi.swiftinterface + + hash + + a8BQ44iJ323lEFydYfIFfdOMKHM= + + hash2 + + o8Y4+r1zzyFNMa75uqF9gjXZ8meyirNrFRq7r740Cyo= + + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-macabi.abi.json + + hash + + MoPAmppgZF6iBzZ1PINp9d88llc= + + hash2 + + h5p1XIZb8xozu4Ge0xdAbKx/K28709JXEpo2Eo8bhzk= + + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface + + hash + + 5UW5UqFZgxFi19af/zk3umFjyiY= + + hash2 + + awqe6eNYr4cmaLNpikvNR3mYbIQD9Uy2XKNfHwPODYI= + + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-macabi.swiftdoc + + hash + + KmbGsfJbgAorTX9bLR2AD3Gu89U= + + hash2 + + OzegAr/vV9Gayc5s9psLzXiynIuj2zq+6OngLG0LoK4= + + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-macabi.swiftinterface + + hash + + 5UW5UqFZgxFi19af/zk3umFjyiY= + + hash2 + + awqe6eNYr4cmaLNpikvNR3mYbIQD9Uy2XKNfHwPODYI= + + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/module.modulemap + + hash + + x/cXF6lKRNspReEtzJCSW0fNGB4= + + hash2 + + wzagRleOdzlpLhvfj4TWCu3QhjNS5G9PKK5mP8nzzLc= + + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Resources/Info.plist + + hash + + lzd9VlIBafSF+xIBnJaDPrIfK/0= + + hash2 + + RaGgcxwiDkun2YzyguiW1D3jYJs1nhO9yoh+ywvxo/Q= + + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Resources/PrivacyInfo.xcprivacy + + hash + + hvWgeSSd3CM7mvMNrAyctw4z0FY= + + hash2 + + 8Bw1x3CoeC5gLRbhV0CWwxI3HmL64X/ikUs5sXB+e54= + + + ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/Current + + symlink + A + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/BugfenderSDK + + hash + + IS2znJm7xiNryMHheSAitUronfg= + + hash2 + + trjNwOclE3wYOrHR6RCEuMyZ/dQx9GoTJzEIHYMNKFc= + + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Headers/BFDefaultLogInterceptor.h + + hash + + HM3OfaV/2/FAmMiZhowi7Z+XD3k= + + hash2 + + RPzjmSJ0KeLiYXq9hGrpzX/YhmMaxX5QUPFjOrC9+rs= + + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Headers/BFInterceptedLog.h + + hash + + InKoTT1wl9WenJUaI/UucvEsjfE= + + hash2 + + UcwfFY0qkHqthVY2AufNK+Eps9AsOCdPr/1xz3EXsBg= + + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Headers/BFLogInterceptor.h + + hash + + HEA76HZiRCGnFUYr6egoRlxIx/I= + + hash2 + + N4IIYmip6wsKAxkKJ7CKK95v6mHIkVoyURQH938ca5c= + + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Headers/BFUserFeedbackNavigationController.h + + hash + + pgNFegt5zvOiPUxMA25ZNeKFPoM= + + hash2 + + l8gcWZ/QAHe/vDz+pEzNEUS0JBQ3UAKqilS9QX0XGxE= + + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Headers/BFUserFeedbackViewController.h + + hash + + 2nyi/Du3qqDKGIjd2XYC7Mvm6BU= + + hash2 + + erKOMKGGxHhi9xZCBIYJTISwyaA0bXoGP3dOUh15uaE= + + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Headers/BugfenderSDK-Swift.h + + hash + + ecvyv9RbFVvMRUrHbOatPc5/kIE= + + hash2 + + +VZJUtL+V+u3+cnec8cLK6r5xzk7EV3zK/PW6JBWAzQ= + + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Headers/BugfenderSDK.h + + hash + + voOPfrOlcipjPmRnlC4EwyrwIec= + + hash2 + + gJNs1jgKK8Bg5J0W/IY1Y5sCZEPntTo92ZNlwyVehrc= + + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Info.plist + + hash + + PoJAks98wngNth2fp/m0mlSzqrs= + + hash2 + + YuTZUx6Uh8xa5NbfKuCGC8cVhrGvXkbFf+jkqZVLHgM= + + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.abi.json + + hash + + MoPAmppgZF6iBzZ1PINp9d88llc= + + hash2 + + h5p1XIZb8xozu4Ge0xdAbKx/K28709JXEpo2Eo8bhzk= + + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + hash + + M6fmzoaC4UCxVa1tgpV+gItiDMA= + + hash2 + + m/SbE8IkjSOBpqHFnLBjNG2oBAH/pWu6Tl5Cs0rff9Q= + + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc + + hash + + n0XWn5yLEHw6l5BgKwqCARAp6tg= + + hash2 + + iyaWleKgaKRkEnf1Bh6qhytV7v1aAu4m4Sb7RWffwnM= + + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface + + hash + + M6fmzoaC4UCxVa1tgpV+gItiDMA= + + hash2 + + m/SbE8IkjSOBpqHFnLBjNG2oBAH/pWu6Tl5Cs0rff9Q= + + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json + + hash + + MoPAmppgZF6iBzZ1PINp9d88llc= + + hash2 + + h5p1XIZb8xozu4Ge0xdAbKx/K28709JXEpo2Eo8bhzk= + + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface + + hash + + xJGQ3WnTgTnyX71VWXKG4uuv8f4= + + hash2 + + ByseoRqxWjjWVoRGgZJA6YaWG3z0ldKedAQnoP2qgdE= + + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc + + hash + + EwNM64Lr3Jsud4BoDRsMnRIFfXA= + + hash2 + + VsXQNmJXvqLokiCQv+BBWBbL12DvNTZomrf3LHm66UY= + + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface + + hash + + xJGQ3WnTgTnyX71VWXKG4uuv8f4= + + hash2 + + ByseoRqxWjjWVoRGgZJA6YaWG3z0ldKedAQnoP2qgdE= + + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/module.modulemap + + hash + + x/cXF6lKRNspReEtzJCSW0fNGB4= + + hash2 + + wzagRleOdzlpLhvfj4TWCu3QhjNS5G9PKK5mP8nzzLc= + + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/PrivacyInfo.xcprivacy + + hash + + hvWgeSSd3CM7mvMNrAyctw4z0FY= + + hash2 + + 8Bw1x3CoeC5gLRbhV0CWwxI3HmL64X/ikUs5sXB+e54= + + + ios-arm64_x86_64-simulator/BugfenderSDK.framework/_CodeSignature/CodeResources + + hash + + 3nuhG8pi4ZnbS5fM0FA1LSu9fjI= + + hash2 + + Z5pbV/jR+EzoKHABFY10Z8VALfmcA7QX4DWBqzKFsFo= + + + + rules + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/BugfenderSDK.xcframework/_CodeSignature/CodeSignature b/BugfenderSDK.xcframework/_CodeSignature/CodeSignature new file mode 100644 index 0000000..fb810bf Binary files /dev/null and b/BugfenderSDK.xcframework/_CodeSignature/CodeSignature differ diff --git a/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/BugfenderSDK b/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/BugfenderSDK index 0fd549e..d5ee502 100755 Binary files a/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/BugfenderSDK and b/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/BugfenderSDK differ diff --git a/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Headers/BugfenderSDK-Swift.h b/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Headers/BugfenderSDK-Swift.h index 995a5c3..4eacd5b 100644 --- a/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Headers/BugfenderSDK-Swift.h +++ b/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Headers/BugfenderSDK-Swift.h @@ -1,4 +1,6 @@ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +#if 0 +#elif defined(__arm64__) && __arm64__ +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef BUGFENDERSDK_SWIFT_H #define BUGFENDERSDK_SWIFT_H #pragma clang diagnostic push @@ -22,10 +24,38 @@ #endif #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#include +#include +#include +#include +#else #include #include #include +#include +#endif +#if defined(__cplusplus) +#if defined(__arm64e__) && __has_include() +# include +#else +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreserved-macro-identifier" +# ifndef __ptrauth_swift_value_witness_function_pointer +# define __ptrauth_swift_value_witness_function_pointer(x) +# endif +# ifndef __ptrauth_swift_class_method_pointer +# define __ptrauth_swift_class_method_pointer(x) +# endif +#pragma clang diagnostic pop +#endif +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -60,53 +90,66 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # if __has_feature(objc_class_property) # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ # else -# define SWIFT_CLASS_PROPERTY(...) +# 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) +#if !defined(SWIFT_RUNTIME_NAME) +# if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +# else +# define SWIFT_RUNTIME_NAME(X) +# endif #endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) +#if !defined(SWIFT_COMPILE_NAME) +# if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +# else +# define SWIFT_COMPILE_NAME(X) +# endif #endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) +#if !defined(SWIFT_METHOD_FAMILY) +# if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +# else +# define SWIFT_METHOD_FAMILY(X) +# endif #endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE +#if !defined(SWIFT_NOESCAPE) +# if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +# else +# define SWIFT_NOESCAPE +# endif #endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT +#if !defined(SWIFT_RELEASES_ARGUMENT) +# if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +# else +# define SWIFT_RELEASES_ARGUMENT +# endif #endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT +#if !defined(SWIFT_WARN_UNUSED_RESULT) +# if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +# else +# define SWIFT_WARN_UNUSED_RESULT +# endif #endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN +#if !defined(SWIFT_NORETURN) +# if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +# else +# define SWIFT_NORETURN +# endif #endif #if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_EXTRA #endif #if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_EXTRA #endif #if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA +# define SWIFT_ENUM_EXTRA #endif #if !defined(SWIFT_CLASS) # if __has_attribute(objc_subclassing_restricted) @@ -126,28 +169,25 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # 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 +# define OBJC_DESIGNATED_INITIALIZER # endif #endif #if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# if __has_attribute(enum_extensibility) # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) # else -# define SWIFT_ENUM_ATTR(_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) # endif #endif #if !defined(SWIFT_ENUM) @@ -176,13 +216,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #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) +#if !defined(SWIFT_DEPRECATED_OBJC) +# 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 #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) -# define IBSegueAction +# define IBSegueAction +#endif #endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) @@ -191,12 +235,51 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif -#if __has_feature(modules) +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if !defined(SWIFT_INDIRECT_RESULT) +# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) +#endif +#if !defined(SWIFT_CONTEXT) +# define SWIFT_CONTEXT __attribute__((swift_context)) +#endif +#if !defined(SWIFT_ERROR_RESULT) +# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) +#endif +#if defined(__cplusplus) +# define SWIFT_NOEXCEPT noexcept +#else +# define SWIFT_NOEXCEPT +#endif +#if !defined(SWIFT_C_INLINE_THUNK) +# if __has_attribute(always_inline) +# if __has_attribute(nodebug) +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) +# else +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) +# endif +# else +# define SWIFT_C_INLINE_THUNK inline +# endif +#endif +#if defined(_WIN32) +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) +#endif +#else +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL +#endif +#endif +#if defined(__OBJC__) +#if __has_feature(objc_modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif #endif +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -204,6 +287,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -212,9 +296,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif +#if defined(__cplusplus) +#endif #pragma clang diagnostic pop #endif + +#else +#error unsupported Swift architecture +#endif diff --git a/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Headers/BugfenderSDK.h b/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Headers/BugfenderSDK.h index cbdcad7..2243193 100644 --- a/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Headers/BugfenderSDK.h +++ b/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Headers/BugfenderSDK.h @@ -91,6 +91,7 @@ NS_ASSUME_NONNULL_BEGIN #define BFLibraryVersionNumber_1_13_0 72 #define BFLibraryVersionNumber_1_13_1 73 #define BFLibraryVersionNumber_1_13_2 74 +#define BFLibraryVersionNumber_2_0_0 75 /** * Current Bugfender version number. diff --git a/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Info.plist b/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Info.plist index 1c95da6..b55f936 100644 Binary files a/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Info.plist and b/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Info.plist differ diff --git a/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.abi.json b/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.abi.json new file mode 100644 index 0000000..35eee91 --- /dev/null +++ b/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.abi.json @@ -0,0 +1,980 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "BFLog", + "printedName": "BFLog(_:_:tag:level:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "BFLogLevel", + "printedName": "BugfenderSDK.BFLogLevel", + "hasDefaultArg": true, + "usr": "c:@E@BFLogLevel" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK5BFLog__3tag5level8filename4line8funcnameySS_s7CVarArg_pdSSSgSo0C5LevelVSSSiSStF", + "mangledName": "$s12BugfenderSDK5BFLog__3tag5level8filename4line8funcnameySS_s7CVarArg_pdSSSgSo0C5LevelVSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogWarn", + "printedName": "BFLogWarn(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK9BFLogWarn__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK9BFLogWarn__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogErr", + "printedName": "BFLogErr(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK8BFLogErr__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK8BFLogErr__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogTrace", + "printedName": "BFLogTrace(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK10BFLogTrace__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK10BFLogTrace__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogInfo", + "printedName": "BFLogInfo(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK9BFLogInfo__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK9BFLogInfo__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogFatal", + "printedName": "BFLogFatal(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK10BFLogFatal__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK10BFLogFatal__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bfprint", + "printedName": "bfprint(_:separator:terminator:tag:level:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "BFLogLevel", + "printedName": "BugfenderSDK.BFLogLevel", + "hasDefaultArg": true, + "usr": "c:@E@BFLogLevel" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK7bfprint_9separator10terminator3tag5level8filename4line8funcnameyypd_S3SSgSo10BFLogLevelVSSSiSStF", + "mangledName": "$s12BugfenderSDK7bfprint_9separator10terminator3tag5level8filename4line8funcnameyypd_S3SSgSo10BFLogLevelVSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Bugfender", + "printedName": "Bugfender", + "children": [ + { + "kind": "Function", + "name": "print", + "printedName": "print(_:separator:terminator:tag:level:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "BFLogLevel", + "printedName": "BugfenderSDK.BFLogLevel", + "hasDefaultArg": true, + "usr": "c:@E@BFLogLevel" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So9BugfenderC0A3SDKE5print_9separator10terminator3tag5level8filename4line8funcnameyypd_S3SSgSo10BFLogLevelVSSSiSStFZ", + "mangledName": "$sSo9BugfenderC0A3SDKE5print_9separator10terminator3tag5level8filename4line8funcnameyypd_S3SSgSo10BFLogLevelVSSSiSStFZ", + "moduleName": "BugfenderSDK", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "error", + "printedName": "error(_:separator:terminator:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So9BugfenderC0A3SDKE5error_9separator10terminator3tag8filename4line8funcnameyypd_S3SSgSSSiSStFZ", + "mangledName": "$sSo9BugfenderC0A3SDKE5error_9separator10terminator3tag8filename4line8funcnameyypd_S3SSgSSSiSStFZ", + "moduleName": "BugfenderSDK", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "warning", + "printedName": "warning(_:separator:terminator:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So9BugfenderC0A3SDKE7warning_9separator10terminator3tag8filename4line8funcnameyypd_S3SSgSSSiSStFZ", + "mangledName": "$sSo9BugfenderC0A3SDKE7warning_9separator10terminator3tag8filename4line8funcnameyypd_S3SSgSSSiSStFZ", + "moduleName": "BugfenderSDK", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)Bugfender", + "moduleName": "BugfenderSDK", + "isOpen": true, + "objc_name": "Bugfender", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 364, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 390, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 757, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 783, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 1129, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 1155, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 1523, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 3822, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 3848, + "length": 2, + "value": "\"\"" + } + ] +} \ No newline at end of file diff --git a/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.private.swiftinterface b/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.private.swiftinterface new file mode 100644 index 0000000..869006a --- /dev/null +++ b/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.private.swiftinterface @@ -0,0 +1,21 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name BugfenderSDK +@_exported import BugfenderSDK +import Foundation +import Swift +import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims +extension BugfenderSDK.Bugfender { + public class func print(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) + public class func error(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) + public class func warning(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +} +public func BFLog(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogWarn(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogErr(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogTrace(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogInfo(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogFatal(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func bfprint(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) diff --git a/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.swiftdoc b/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.swiftdoc index 952c752..3b38a51 100644 Binary files a/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.swiftdoc and b/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.swiftinterface b/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.swiftinterface index 23670e5..869006a 100644 --- a/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.swiftinterface +++ b/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,19 +1,21 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target arm64-apple-ios11.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name BugfenderSDK +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name BugfenderSDK @_exported import BugfenderSDK import Foundation import Swift import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims extension BugfenderSDK.Bugfender { public class func print(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) public class func error(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) public class func warning(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) } -public func BFLog(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogWarn(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogErr(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogTrace(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogInfo(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogFatal(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLog(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogWarn(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogErr(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogTrace(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogInfo(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogFatal(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) public func bfprint(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) diff --git a/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Modules/module.modulemap b/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Modules/module.modulemap index bbe235f..bd4e927 100644 --- a/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Modules/module.modulemap +++ b/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Modules/module.modulemap @@ -1,11 +1,11 @@ framework module BugfenderSDK { umbrella header "BugfenderSDK.h" - export * + module * { export * } } module BugfenderSDK.Swift { - header "BugfenderSDK-Swift.h" - requires objc + header "BugfenderSDK-Swift.h" + requires objc } diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/BugfenderSDK b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/BugfenderSDK index 8c82a8e..3e53fe2 100755 Binary files a/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/BugfenderSDK and b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/BugfenderSDK differ diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Headers/BugfenderSDK-Swift.h b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Headers/BugfenderSDK-Swift.h index 7ea8f74..b455bba 100644 --- a/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Headers/BugfenderSDK-Swift.h +++ b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Headers/BugfenderSDK-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef BUGFENDERSDK_SWIFT_H #define BUGFENDERSDK_SWIFT_H #pragma clang diagnostic push @@ -24,10 +24,38 @@ #endif #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#include +#include +#include +#include +#else #include #include #include +#include +#endif +#if defined(__cplusplus) +#if defined(__arm64e__) && __has_include() +# include +#else +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreserved-macro-identifier" +# ifndef __ptrauth_swift_value_witness_function_pointer +# define __ptrauth_swift_value_witness_function_pointer(x) +# endif +# ifndef __ptrauth_swift_class_method_pointer +# define __ptrauth_swift_class_method_pointer(x) +# endif +#pragma clang diagnostic pop +#endif +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -62,53 +90,66 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # if __has_feature(objc_class_property) # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ # else -# define SWIFT_CLASS_PROPERTY(...) +# 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) +#if !defined(SWIFT_RUNTIME_NAME) +# if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +# else +# define SWIFT_RUNTIME_NAME(X) +# endif #endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) +#if !defined(SWIFT_COMPILE_NAME) +# if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +# else +# define SWIFT_COMPILE_NAME(X) +# endif #endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) +#if !defined(SWIFT_METHOD_FAMILY) +# if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +# else +# define SWIFT_METHOD_FAMILY(X) +# endif #endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE +#if !defined(SWIFT_NOESCAPE) +# if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +# else +# define SWIFT_NOESCAPE +# endif #endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT +#if !defined(SWIFT_RELEASES_ARGUMENT) +# if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +# else +# define SWIFT_RELEASES_ARGUMENT +# endif #endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT +#if !defined(SWIFT_WARN_UNUSED_RESULT) +# if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +# else +# define SWIFT_WARN_UNUSED_RESULT +# endif #endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN +#if !defined(SWIFT_NORETURN) +# if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +# else +# define SWIFT_NORETURN +# endif #endif #if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_EXTRA #endif #if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_EXTRA #endif #if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA +# define SWIFT_ENUM_EXTRA #endif #if !defined(SWIFT_CLASS) # if __has_attribute(objc_subclassing_restricted) @@ -128,28 +169,25 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # 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 +# define OBJC_DESIGNATED_INITIALIZER # endif #endif #if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# if __has_attribute(enum_extensibility) # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) # else -# define SWIFT_ENUM_ATTR(_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) # endif #endif #if !defined(SWIFT_ENUM) @@ -178,13 +216,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #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) +#if !defined(SWIFT_DEPRECATED_OBJC) +# 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 #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) -# define IBSegueAction +# define IBSegueAction +#endif #endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) @@ -193,12 +235,51 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif -#if __has_feature(modules) +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if !defined(SWIFT_INDIRECT_RESULT) +# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) +#endif +#if !defined(SWIFT_CONTEXT) +# define SWIFT_CONTEXT __attribute__((swift_context)) +#endif +#if !defined(SWIFT_ERROR_RESULT) +# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) +#endif +#if defined(__cplusplus) +# define SWIFT_NOEXCEPT noexcept +#else +# define SWIFT_NOEXCEPT +#endif +#if !defined(SWIFT_C_INLINE_THUNK) +# if __has_attribute(always_inline) +# if __has_attribute(nodebug) +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) +# else +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) +# endif +# else +# define SWIFT_C_INLINE_THUNK inline +# endif +#endif +#if defined(_WIN32) +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) +#endif +#else +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL +#endif +#endif +#if defined(__OBJC__) +#if __has_feature(objc_modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif #endif +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -206,6 +287,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -214,15 +296,19 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif +#if defined(__cplusplus) +#endif #pragma clang diagnostic pop #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef BUGFENDERSDK_SWIFT_H #define BUGFENDERSDK_SWIFT_H #pragma clang diagnostic push @@ -246,10 +332,38 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#include +#include +#include +#include +#else #include #include #include +#include +#endif +#if defined(__cplusplus) +#if defined(__arm64e__) && __has_include() +# include +#else +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreserved-macro-identifier" +# ifndef __ptrauth_swift_value_witness_function_pointer +# define __ptrauth_swift_value_witness_function_pointer(x) +# endif +# ifndef __ptrauth_swift_class_method_pointer +# define __ptrauth_swift_class_method_pointer(x) +# endif +#pragma clang diagnostic pop +#endif +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -284,53 +398,66 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # if __has_feature(objc_class_property) # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ # else -# define SWIFT_CLASS_PROPERTY(...) +# 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) +#if !defined(SWIFT_RUNTIME_NAME) +# if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +# else +# define SWIFT_RUNTIME_NAME(X) +# endif #endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) +#if !defined(SWIFT_COMPILE_NAME) +# if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +# else +# define SWIFT_COMPILE_NAME(X) +# endif #endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) +#if !defined(SWIFT_METHOD_FAMILY) +# if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +# else +# define SWIFT_METHOD_FAMILY(X) +# endif #endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE +#if !defined(SWIFT_NOESCAPE) +# if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +# else +# define SWIFT_NOESCAPE +# endif #endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT +#if !defined(SWIFT_RELEASES_ARGUMENT) +# if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +# else +# define SWIFT_RELEASES_ARGUMENT +# endif #endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT +#if !defined(SWIFT_WARN_UNUSED_RESULT) +# if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +# else +# define SWIFT_WARN_UNUSED_RESULT +# endif #endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN +#if !defined(SWIFT_NORETURN) +# if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +# else +# define SWIFT_NORETURN +# endif #endif #if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_EXTRA #endif #if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_EXTRA #endif #if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA +# define SWIFT_ENUM_EXTRA #endif #if !defined(SWIFT_CLASS) # if __has_attribute(objc_subclassing_restricted) @@ -350,28 +477,25 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # 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 +# define OBJC_DESIGNATED_INITIALIZER # endif #endif #if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# if __has_attribute(enum_extensibility) # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) # else -# define SWIFT_ENUM_ATTR(_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) # endif #endif #if !defined(SWIFT_ENUM) @@ -400,13 +524,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #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) +#if !defined(SWIFT_DEPRECATED_OBJC) +# 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 #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) -# define IBSegueAction +# define IBSegueAction +#endif #endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) @@ -415,12 +543,51 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif -#if __has_feature(modules) +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if !defined(SWIFT_INDIRECT_RESULT) +# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) +#endif +#if !defined(SWIFT_CONTEXT) +# define SWIFT_CONTEXT __attribute__((swift_context)) +#endif +#if !defined(SWIFT_ERROR_RESULT) +# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) +#endif +#if defined(__cplusplus) +# define SWIFT_NOEXCEPT noexcept +#else +# define SWIFT_NOEXCEPT +#endif +#if !defined(SWIFT_C_INLINE_THUNK) +# if __has_attribute(always_inline) +# if __has_attribute(nodebug) +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) +# else +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) +# endif +# else +# define SWIFT_C_INLINE_THUNK inline +# endif +#endif +#if defined(_WIN32) +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) +#endif +#else +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL +#endif +#endif +#if defined(__OBJC__) +#if __has_feature(objc_modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif #endif +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -428,6 +595,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -436,11 +604,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif +#if defined(__cplusplus) +#endif #pragma clang diagnostic pop #endif +#else +#error unsupported Swift architecture #endif diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Headers/BugfenderSDK.h b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Headers/BugfenderSDK.h index cbdcad7..2243193 100644 --- a/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Headers/BugfenderSDK.h +++ b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Headers/BugfenderSDK.h @@ -91,6 +91,7 @@ NS_ASSUME_NONNULL_BEGIN #define BFLibraryVersionNumber_1_13_0 72 #define BFLibraryVersionNumber_1_13_1 73 #define BFLibraryVersionNumber_1_13_2 74 +#define BFLibraryVersionNumber_2_0_0 75 /** * Current Bugfender version number. diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-macabi.abi.json b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-macabi.abi.json new file mode 100644 index 0000000..35eee91 --- /dev/null +++ b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-macabi.abi.json @@ -0,0 +1,980 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "BFLog", + "printedName": "BFLog(_:_:tag:level:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "BFLogLevel", + "printedName": "BugfenderSDK.BFLogLevel", + "hasDefaultArg": true, + "usr": "c:@E@BFLogLevel" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK5BFLog__3tag5level8filename4line8funcnameySS_s7CVarArg_pdSSSgSo0C5LevelVSSSiSStF", + "mangledName": "$s12BugfenderSDK5BFLog__3tag5level8filename4line8funcnameySS_s7CVarArg_pdSSSgSo0C5LevelVSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogWarn", + "printedName": "BFLogWarn(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK9BFLogWarn__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK9BFLogWarn__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogErr", + "printedName": "BFLogErr(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK8BFLogErr__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK8BFLogErr__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogTrace", + "printedName": "BFLogTrace(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK10BFLogTrace__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK10BFLogTrace__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogInfo", + "printedName": "BFLogInfo(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK9BFLogInfo__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK9BFLogInfo__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogFatal", + "printedName": "BFLogFatal(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK10BFLogFatal__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK10BFLogFatal__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bfprint", + "printedName": "bfprint(_:separator:terminator:tag:level:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "BFLogLevel", + "printedName": "BugfenderSDK.BFLogLevel", + "hasDefaultArg": true, + "usr": "c:@E@BFLogLevel" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK7bfprint_9separator10terminator3tag5level8filename4line8funcnameyypd_S3SSgSo10BFLogLevelVSSSiSStF", + "mangledName": "$s12BugfenderSDK7bfprint_9separator10terminator3tag5level8filename4line8funcnameyypd_S3SSgSo10BFLogLevelVSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Bugfender", + "printedName": "Bugfender", + "children": [ + { + "kind": "Function", + "name": "print", + "printedName": "print(_:separator:terminator:tag:level:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "BFLogLevel", + "printedName": "BugfenderSDK.BFLogLevel", + "hasDefaultArg": true, + "usr": "c:@E@BFLogLevel" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So9BugfenderC0A3SDKE5print_9separator10terminator3tag5level8filename4line8funcnameyypd_S3SSgSo10BFLogLevelVSSSiSStFZ", + "mangledName": "$sSo9BugfenderC0A3SDKE5print_9separator10terminator3tag5level8filename4line8funcnameyypd_S3SSgSo10BFLogLevelVSSSiSStFZ", + "moduleName": "BugfenderSDK", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "error", + "printedName": "error(_:separator:terminator:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So9BugfenderC0A3SDKE5error_9separator10terminator3tag8filename4line8funcnameyypd_S3SSgSSSiSStFZ", + "mangledName": "$sSo9BugfenderC0A3SDKE5error_9separator10terminator3tag8filename4line8funcnameyypd_S3SSgSSSiSStFZ", + "moduleName": "BugfenderSDK", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "warning", + "printedName": "warning(_:separator:terminator:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So9BugfenderC0A3SDKE7warning_9separator10terminator3tag8filename4line8funcnameyypd_S3SSgSSSiSStFZ", + "mangledName": "$sSo9BugfenderC0A3SDKE7warning_9separator10terminator3tag8filename4line8funcnameyypd_S3SSgSSSiSStFZ", + "moduleName": "BugfenderSDK", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)Bugfender", + "moduleName": "BugfenderSDK", + "isOpen": true, + "objc_name": "Bugfender", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 364, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 390, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 757, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 783, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 1129, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 1155, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 1523, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 3822, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 3848, + "length": 2, + "value": "\"\"" + } + ] +} \ No newline at end of file diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface new file mode 100644 index 0000000..f489eba --- /dev/null +++ b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface @@ -0,0 +1,21 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name BugfenderSDK +@_exported import BugfenderSDK +import Foundation +import Swift +import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims +extension BugfenderSDK.Bugfender { + public class func print(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) + public class func error(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) + public class func warning(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +} +public func BFLog(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogWarn(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogErr(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogTrace(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogInfo(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogFatal(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func bfprint(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-macabi.swiftdoc b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-macabi.swiftdoc index 2fd1b7f..0bf4ec6 100644 Binary files a/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-macabi.swiftdoc and b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-macabi.swiftdoc differ diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-macabi.swiftinterface b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-macabi.swiftinterface index e7109b5..f489eba 100644 --- a/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-macabi.swiftinterface +++ b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-macabi.swiftinterface @@ -1,19 +1,21 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target arm64-apple-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name BugfenderSDK +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name BugfenderSDK @_exported import BugfenderSDK import Foundation import Swift import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims extension BugfenderSDK.Bugfender { public class func print(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) public class func error(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) public class func warning(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) } -public func BFLog(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogWarn(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogErr(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogTrace(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogInfo(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogFatal(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLog(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogWarn(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogErr(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogTrace(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogInfo(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogFatal(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) public func bfprint(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-macabi.abi.json b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-macabi.abi.json new file mode 100644 index 0000000..35eee91 --- /dev/null +++ b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-macabi.abi.json @@ -0,0 +1,980 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "BFLog", + "printedName": "BFLog(_:_:tag:level:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "BFLogLevel", + "printedName": "BugfenderSDK.BFLogLevel", + "hasDefaultArg": true, + "usr": "c:@E@BFLogLevel" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK5BFLog__3tag5level8filename4line8funcnameySS_s7CVarArg_pdSSSgSo0C5LevelVSSSiSStF", + "mangledName": "$s12BugfenderSDK5BFLog__3tag5level8filename4line8funcnameySS_s7CVarArg_pdSSSgSo0C5LevelVSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogWarn", + "printedName": "BFLogWarn(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK9BFLogWarn__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK9BFLogWarn__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogErr", + "printedName": "BFLogErr(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK8BFLogErr__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK8BFLogErr__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogTrace", + "printedName": "BFLogTrace(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK10BFLogTrace__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK10BFLogTrace__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogInfo", + "printedName": "BFLogInfo(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK9BFLogInfo__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK9BFLogInfo__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogFatal", + "printedName": "BFLogFatal(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK10BFLogFatal__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK10BFLogFatal__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bfprint", + "printedName": "bfprint(_:separator:terminator:tag:level:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "BFLogLevel", + "printedName": "BugfenderSDK.BFLogLevel", + "hasDefaultArg": true, + "usr": "c:@E@BFLogLevel" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK7bfprint_9separator10terminator3tag5level8filename4line8funcnameyypd_S3SSgSo10BFLogLevelVSSSiSStF", + "mangledName": "$s12BugfenderSDK7bfprint_9separator10terminator3tag5level8filename4line8funcnameyypd_S3SSgSo10BFLogLevelVSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Bugfender", + "printedName": "Bugfender", + "children": [ + { + "kind": "Function", + "name": "print", + "printedName": "print(_:separator:terminator:tag:level:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "BFLogLevel", + "printedName": "BugfenderSDK.BFLogLevel", + "hasDefaultArg": true, + "usr": "c:@E@BFLogLevel" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So9BugfenderC0A3SDKE5print_9separator10terminator3tag5level8filename4line8funcnameyypd_S3SSgSo10BFLogLevelVSSSiSStFZ", + "mangledName": "$sSo9BugfenderC0A3SDKE5print_9separator10terminator3tag5level8filename4line8funcnameyypd_S3SSgSo10BFLogLevelVSSSiSStFZ", + "moduleName": "BugfenderSDK", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "error", + "printedName": "error(_:separator:terminator:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So9BugfenderC0A3SDKE5error_9separator10terminator3tag8filename4line8funcnameyypd_S3SSgSSSiSStFZ", + "mangledName": "$sSo9BugfenderC0A3SDKE5error_9separator10terminator3tag8filename4line8funcnameyypd_S3SSgSSSiSStFZ", + "moduleName": "BugfenderSDK", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "warning", + "printedName": "warning(_:separator:terminator:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So9BugfenderC0A3SDKE7warning_9separator10terminator3tag8filename4line8funcnameyypd_S3SSgSSSiSStFZ", + "mangledName": "$sSo9BugfenderC0A3SDKE7warning_9separator10terminator3tag8filename4line8funcnameyypd_S3SSgSSSiSStFZ", + "moduleName": "BugfenderSDK", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)Bugfender", + "moduleName": "BugfenderSDK", + "isOpen": true, + "objc_name": "Bugfender", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 364, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 390, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 757, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 783, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 1129, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 1155, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 1523, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 3822, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 3848, + "length": 2, + "value": "\"\"" + } + ] +} \ No newline at end of file diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface new file mode 100644 index 0000000..9c58bf3 --- /dev/null +++ b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface @@ -0,0 +1,21 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target x86_64-apple-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name BugfenderSDK +@_exported import BugfenderSDK +import Foundation +import Swift +import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims +extension BugfenderSDK.Bugfender { + public class func print(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) + public class func error(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) + public class func warning(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +} +public func BFLog(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogWarn(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogErr(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogTrace(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogInfo(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogFatal(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func bfprint(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-macabi.swiftdoc b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-macabi.swiftdoc index 4149561..1cb47e4 100644 Binary files a/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-macabi.swiftdoc and b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-macabi.swiftdoc differ diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-macabi.swiftinterface b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-macabi.swiftinterface index 9b1751a..9c58bf3 100644 --- a/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-macabi.swiftinterface +++ b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-macabi.swiftinterface @@ -1,19 +1,21 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target x86_64-apple-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name BugfenderSDK +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target x86_64-apple-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name BugfenderSDK @_exported import BugfenderSDK import Foundation import Swift import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims extension BugfenderSDK.Bugfender { public class func print(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) public class func error(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) public class func warning(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) } -public func BFLog(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogWarn(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogErr(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogTrace(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogInfo(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogFatal(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLog(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogWarn(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogErr(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogTrace(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogInfo(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogFatal(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) public func bfprint(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/module.modulemap b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/module.modulemap index bbe235f..bd4e927 100644 --- a/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/module.modulemap +++ b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Modules/module.modulemap @@ -1,11 +1,11 @@ framework module BugfenderSDK { umbrella header "BugfenderSDK.h" - export * + module * { export * } } module BugfenderSDK.Swift { - header "BugfenderSDK-Swift.h" - requires objc + header "BugfenderSDK-Swift.h" + requires objc } diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Resources/Info.plist b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Resources/Info.plist index a907867..ef86ffc 100644 --- a/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Resources/Info.plist +++ b/BugfenderSDK.xcframework/ios-arm64_x86_64-maccatalyst/BugfenderSDK.framework/Versions/A/Resources/Info.plist @@ -3,7 +3,7 @@ BuildMachineOSBuild - 23A344 + 23G93 CFBundleDevelopmentRegion en CFBundleExecutable @@ -27,19 +27,19 @@ DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 13F100 + DTPlatformName macosx DTPlatformVersion - 12.3 + 14.5 DTSDKBuild - 21E226 + 23F73 DTSDKName - macosx12.3 + macosx14.5 DTXcode - 1341 + 1540 DTXcodeBuild - 13F100 + 15F31d LSMinimumSystemVersion 10.15 UIDeviceFamily diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/BugfenderSDK b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/BugfenderSDK index 795bd3c..9505ddd 100755 Binary files a/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/BugfenderSDK and b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/BugfenderSDK differ diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Headers/BugfenderSDK-Swift.h b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Headers/BugfenderSDK-Swift.h index 7ea8f74..b455bba 100644 --- a/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Headers/BugfenderSDK-Swift.h +++ b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Headers/BugfenderSDK-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef BUGFENDERSDK_SWIFT_H #define BUGFENDERSDK_SWIFT_H #pragma clang diagnostic push @@ -24,10 +24,38 @@ #endif #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#include +#include +#include +#include +#else #include #include #include +#include +#endif +#if defined(__cplusplus) +#if defined(__arm64e__) && __has_include() +# include +#else +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreserved-macro-identifier" +# ifndef __ptrauth_swift_value_witness_function_pointer +# define __ptrauth_swift_value_witness_function_pointer(x) +# endif +# ifndef __ptrauth_swift_class_method_pointer +# define __ptrauth_swift_class_method_pointer(x) +# endif +#pragma clang diagnostic pop +#endif +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -62,53 +90,66 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # if __has_feature(objc_class_property) # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ # else -# define SWIFT_CLASS_PROPERTY(...) +# 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) +#if !defined(SWIFT_RUNTIME_NAME) +# if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +# else +# define SWIFT_RUNTIME_NAME(X) +# endif #endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) +#if !defined(SWIFT_COMPILE_NAME) +# if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +# else +# define SWIFT_COMPILE_NAME(X) +# endif #endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) +#if !defined(SWIFT_METHOD_FAMILY) +# if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +# else +# define SWIFT_METHOD_FAMILY(X) +# endif #endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE +#if !defined(SWIFT_NOESCAPE) +# if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +# else +# define SWIFT_NOESCAPE +# endif #endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT +#if !defined(SWIFT_RELEASES_ARGUMENT) +# if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +# else +# define SWIFT_RELEASES_ARGUMENT +# endif #endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT +#if !defined(SWIFT_WARN_UNUSED_RESULT) +# if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +# else +# define SWIFT_WARN_UNUSED_RESULT +# endif #endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN +#if !defined(SWIFT_NORETURN) +# if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +# else +# define SWIFT_NORETURN +# endif #endif #if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_EXTRA #endif #if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_EXTRA #endif #if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA +# define SWIFT_ENUM_EXTRA #endif #if !defined(SWIFT_CLASS) # if __has_attribute(objc_subclassing_restricted) @@ -128,28 +169,25 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # 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 +# define OBJC_DESIGNATED_INITIALIZER # endif #endif #if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# if __has_attribute(enum_extensibility) # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) # else -# define SWIFT_ENUM_ATTR(_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) # endif #endif #if !defined(SWIFT_ENUM) @@ -178,13 +216,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #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) +#if !defined(SWIFT_DEPRECATED_OBJC) +# 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 #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) -# define IBSegueAction +# define IBSegueAction +#endif #endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) @@ -193,12 +235,51 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif -#if __has_feature(modules) +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if !defined(SWIFT_INDIRECT_RESULT) +# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) +#endif +#if !defined(SWIFT_CONTEXT) +# define SWIFT_CONTEXT __attribute__((swift_context)) +#endif +#if !defined(SWIFT_ERROR_RESULT) +# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) +#endif +#if defined(__cplusplus) +# define SWIFT_NOEXCEPT noexcept +#else +# define SWIFT_NOEXCEPT +#endif +#if !defined(SWIFT_C_INLINE_THUNK) +# if __has_attribute(always_inline) +# if __has_attribute(nodebug) +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) +# else +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) +# endif +# else +# define SWIFT_C_INLINE_THUNK inline +# endif +#endif +#if defined(_WIN32) +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) +#endif +#else +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL +#endif +#endif +#if defined(__OBJC__) +#if __has_feature(objc_modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif #endif +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -206,6 +287,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -214,15 +296,19 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif +#if defined(__cplusplus) +#endif #pragma clang diagnostic pop #endif #elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) #ifndef BUGFENDERSDK_SWIFT_H #define BUGFENDERSDK_SWIFT_H #pragma clang diagnostic push @@ -246,10 +332,38 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) #include +#endif +#if defined(__cplusplus) +#include +#include +#include +#include +#include +#include +#include +#else #include #include #include +#include +#endif +#if defined(__cplusplus) +#if defined(__arm64e__) && __has_include() +# include +#else +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wreserved-macro-identifier" +# ifndef __ptrauth_swift_value_witness_function_pointer +# define __ptrauth_swift_value_witness_function_pointer(x) +# endif +# ifndef __ptrauth_swift_class_method_pointer +# define __ptrauth_swift_class_method_pointer(x) +# endif +#pragma clang diagnostic pop +#endif +#endif #if !defined(SWIFT_TYPEDEFS) # define SWIFT_TYPEDEFS 1 @@ -284,53 +398,66 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # if __has_feature(objc_class_property) # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ # else -# define SWIFT_CLASS_PROPERTY(...) +# 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) +#if !defined(SWIFT_RUNTIME_NAME) +# if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +# else +# define SWIFT_RUNTIME_NAME(X) +# endif #endif -#if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -#else -# define SWIFT_COMPILE_NAME(X) +#if !defined(SWIFT_COMPILE_NAME) +# if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +# else +# define SWIFT_COMPILE_NAME(X) +# endif #endif -#if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -#else -# define SWIFT_METHOD_FAMILY(X) +#if !defined(SWIFT_METHOD_FAMILY) +# if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +# else +# define SWIFT_METHOD_FAMILY(X) +# endif #endif -#if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -#else -# define SWIFT_NOESCAPE +#if !defined(SWIFT_NOESCAPE) +# if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +# else +# define SWIFT_NOESCAPE +# endif #endif -#if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -#else -# define SWIFT_RELEASES_ARGUMENT +#if !defined(SWIFT_RELEASES_ARGUMENT) +# if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +# else +# define SWIFT_RELEASES_ARGUMENT +# endif #endif -#if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -#else -# define SWIFT_WARN_UNUSED_RESULT +#if !defined(SWIFT_WARN_UNUSED_RESULT) +# if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +# else +# define SWIFT_WARN_UNUSED_RESULT +# endif #endif -#if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -#else -# define SWIFT_NORETURN +#if !defined(SWIFT_NORETURN) +# if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +# else +# define SWIFT_NORETURN +# endif #endif #if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_EXTRA #endif #if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_EXTRA #endif #if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA +# define SWIFT_ENUM_EXTRA #endif #if !defined(SWIFT_CLASS) # if __has_attribute(objc_subclassing_restricted) @@ -350,28 +477,25 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # 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 +# define OBJC_DESIGNATED_INITIALIZER # endif #endif #if !defined(SWIFT_ENUM_ATTR) -# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# if __has_attribute(enum_extensibility) # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) # else -# define SWIFT_ENUM_ATTR(_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) # endif #endif #if !defined(SWIFT_ENUM) @@ -400,13 +524,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #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) +#if !defined(SWIFT_DEPRECATED_OBJC) +# 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 #endif +#if defined(__OBJC__) #if !defined(IBSegueAction) -# define IBSegueAction +# define IBSegueAction +#endif #endif #if !defined(SWIFT_EXTERN) # if defined(__cplusplus) @@ -415,12 +543,51 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_EXTERN extern # endif #endif -#if __has_feature(modules) +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if !defined(SWIFT_INDIRECT_RESULT) +# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) +#endif +#if !defined(SWIFT_CONTEXT) +# define SWIFT_CONTEXT __attribute__((swift_context)) +#endif +#if !defined(SWIFT_ERROR_RESULT) +# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) +#endif +#if defined(__cplusplus) +# define SWIFT_NOEXCEPT noexcept +#else +# define SWIFT_NOEXCEPT +#endif +#if !defined(SWIFT_C_INLINE_THUNK) +# if __has_attribute(always_inline) +# if __has_attribute(nodebug) +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) +# else +# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) +# endif +# else +# define SWIFT_C_INLINE_THUNK inline +# endif +#endif +#if defined(_WIN32) +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) +#endif +#else +#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) +# define SWIFT_IMPORT_STDLIB_SYMBOL +#endif +#endif +#if defined(__OBJC__) +#if __has_feature(objc_modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" #endif #endif +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -428,6 +595,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #endif #pragma clang diagnostic ignored "-Wunknown-pragmas" #pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" #if __has_attribute(external_source_symbol) # pragma push_macro("any") @@ -436,11 +604,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) +#endif #if __has_attribute(external_source_symbol) # pragma clang attribute pop #endif +#if defined(__cplusplus) +#endif #pragma clang diagnostic pop #endif +#else +#error unsupported Swift architecture #endif diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Headers/BugfenderSDK.h b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Headers/BugfenderSDK.h index cbdcad7..2243193 100644 --- a/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Headers/BugfenderSDK.h +++ b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Headers/BugfenderSDK.h @@ -91,6 +91,7 @@ NS_ASSUME_NONNULL_BEGIN #define BFLibraryVersionNumber_1_13_0 72 #define BFLibraryVersionNumber_1_13_1 73 #define BFLibraryVersionNumber_1_13_2 74 +#define BFLibraryVersionNumber_2_0_0 75 /** * Current Bugfender version number. diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Info.plist b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Info.plist index 25e3939..61da4af 100644 Binary files a/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Info.plist and b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Info.plist differ diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.abi.json b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.abi.json new file mode 100644 index 0000000..35eee91 --- /dev/null +++ b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -0,0 +1,980 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "BFLog", + "printedName": "BFLog(_:_:tag:level:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "BFLogLevel", + "printedName": "BugfenderSDK.BFLogLevel", + "hasDefaultArg": true, + "usr": "c:@E@BFLogLevel" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK5BFLog__3tag5level8filename4line8funcnameySS_s7CVarArg_pdSSSgSo0C5LevelVSSSiSStF", + "mangledName": "$s12BugfenderSDK5BFLog__3tag5level8filename4line8funcnameySS_s7CVarArg_pdSSSgSo0C5LevelVSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogWarn", + "printedName": "BFLogWarn(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK9BFLogWarn__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK9BFLogWarn__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogErr", + "printedName": "BFLogErr(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK8BFLogErr__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK8BFLogErr__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogTrace", + "printedName": "BFLogTrace(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK10BFLogTrace__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK10BFLogTrace__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogInfo", + "printedName": "BFLogInfo(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK9BFLogInfo__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK9BFLogInfo__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogFatal", + "printedName": "BFLogFatal(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK10BFLogFatal__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK10BFLogFatal__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bfprint", + "printedName": "bfprint(_:separator:terminator:tag:level:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "BFLogLevel", + "printedName": "BugfenderSDK.BFLogLevel", + "hasDefaultArg": true, + "usr": "c:@E@BFLogLevel" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK7bfprint_9separator10terminator3tag5level8filename4line8funcnameyypd_S3SSgSo10BFLogLevelVSSSiSStF", + "mangledName": "$s12BugfenderSDK7bfprint_9separator10terminator3tag5level8filename4line8funcnameyypd_S3SSgSo10BFLogLevelVSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Bugfender", + "printedName": "Bugfender", + "children": [ + { + "kind": "Function", + "name": "print", + "printedName": "print(_:separator:terminator:tag:level:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "BFLogLevel", + "printedName": "BugfenderSDK.BFLogLevel", + "hasDefaultArg": true, + "usr": "c:@E@BFLogLevel" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So9BugfenderC0A3SDKE5print_9separator10terminator3tag5level8filename4line8funcnameyypd_S3SSgSo10BFLogLevelVSSSiSStFZ", + "mangledName": "$sSo9BugfenderC0A3SDKE5print_9separator10terminator3tag5level8filename4line8funcnameyypd_S3SSgSo10BFLogLevelVSSSiSStFZ", + "moduleName": "BugfenderSDK", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "error", + "printedName": "error(_:separator:terminator:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So9BugfenderC0A3SDKE5error_9separator10terminator3tag8filename4line8funcnameyypd_S3SSgSSSiSStFZ", + "mangledName": "$sSo9BugfenderC0A3SDKE5error_9separator10terminator3tag8filename4line8funcnameyypd_S3SSgSSSiSStFZ", + "moduleName": "BugfenderSDK", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "warning", + "printedName": "warning(_:separator:terminator:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So9BugfenderC0A3SDKE7warning_9separator10terminator3tag8filename4line8funcnameyypd_S3SSgSSSiSStFZ", + "mangledName": "$sSo9BugfenderC0A3SDKE7warning_9separator10terminator3tag8filename4line8funcnameyypd_S3SSgSSSiSStFZ", + "moduleName": "BugfenderSDK", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)Bugfender", + "moduleName": "BugfenderSDK", + "isOpen": true, + "objc_name": "Bugfender", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 364, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 390, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 757, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 783, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 1129, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 1155, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 1523, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 3822, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 3848, + "length": 2, + "value": "\"\"" + } + ] +} \ No newline at end of file diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface new file mode 100644 index 0000000..b91973d --- /dev/null +++ b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -0,0 +1,21 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name BugfenderSDK +@_exported import BugfenderSDK +import Foundation +import Swift +import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims +extension BugfenderSDK.Bugfender { + public class func print(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) + public class func error(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) + public class func warning(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +} +public func BFLog(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogWarn(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogErr(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogTrace(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogInfo(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogFatal(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func bfprint(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc index 0d02e0d..1c7e2c5 100644 Binary files a/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc and b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface index ef6ab86..b91973d 100644 --- a/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,19 +1,21 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target arm64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name BugfenderSDK +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target arm64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name BugfenderSDK @_exported import BugfenderSDK import Foundation import Swift import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims extension BugfenderSDK.Bugfender { public class func print(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) public class func error(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) public class func warning(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) } -public func BFLog(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogWarn(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogErr(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogTrace(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogInfo(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogFatal(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLog(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogWarn(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogErr(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogTrace(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogInfo(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogFatal(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) public func bfprint(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json new file mode 100644 index 0000000..35eee91 --- /dev/null +++ b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -0,0 +1,980 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "RawDocComment" + ] + }, + { + "kind": "Function", + "name": "BFLog", + "printedName": "BFLog(_:_:tag:level:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "BFLogLevel", + "printedName": "BugfenderSDK.BFLogLevel", + "hasDefaultArg": true, + "usr": "c:@E@BFLogLevel" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK5BFLog__3tag5level8filename4line8funcnameySS_s7CVarArg_pdSSSgSo0C5LevelVSSSiSStF", + "mangledName": "$s12BugfenderSDK5BFLog__3tag5level8filename4line8funcnameySS_s7CVarArg_pdSSSgSo0C5LevelVSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogWarn", + "printedName": "BFLogWarn(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK9BFLogWarn__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK9BFLogWarn__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogErr", + "printedName": "BFLogErr(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK8BFLogErr__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK8BFLogErr__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogTrace", + "printedName": "BFLogTrace(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK10BFLogTrace__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK10BFLogTrace__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogInfo", + "printedName": "BFLogInfo(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK9BFLogInfo__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK9BFLogInfo__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "BFLogFatal", + "printedName": "BFLogFatal(_:_:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[any Swift.CVarArg]", + "children": [ + { + "kind": "TypeNominal", + "name": "CVarArg", + "printedName": "any Swift.CVarArg", + "usr": "s:s7CVarArgP" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK10BFLogFatal__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "mangledName": "$s12BugfenderSDK10BFLogFatal__3tag8filename4line8funcnameySS_s7CVarArg_pdSSSgSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "bfprint", + "printedName": "bfprint(_:separator:terminator:tag:level:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "BFLogLevel", + "printedName": "BugfenderSDK.BFLogLevel", + "hasDefaultArg": true, + "usr": "c:@E@BFLogLevel" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:12BugfenderSDK7bfprint_9separator10terminator3tag5level8filename4line8funcnameyypd_S3SSgSo10BFLogLevelVSSSiSStF", + "mangledName": "$s12BugfenderSDK7bfprint_9separator10terminator3tag5level8filename4line8funcnameyypd_S3SSgSo10BFLogLevelVSSSiSStF", + "moduleName": "BugfenderSDK", + "declAttributes": [ + "AccessControl" + ], + "funcSelfKind": "NonMutating" + }, + { + "kind": "TypeDecl", + "name": "Bugfender", + "printedName": "Bugfender", + "children": [ + { + "kind": "Function", + "name": "print", + "printedName": "print(_:separator:terminator:tag:level:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "BFLogLevel", + "printedName": "BugfenderSDK.BFLogLevel", + "hasDefaultArg": true, + "usr": "c:@E@BFLogLevel" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So9BugfenderC0A3SDKE5print_9separator10terminator3tag5level8filename4line8funcnameyypd_S3SSgSo10BFLogLevelVSSSiSStFZ", + "mangledName": "$sSo9BugfenderC0A3SDKE5print_9separator10terminator3tag5level8filename4line8funcnameyypd_S3SSgSo10BFLogLevelVSSSiSStFZ", + "moduleName": "BugfenderSDK", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "error", + "printedName": "error(_:separator:terminator:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So9BugfenderC0A3SDKE5error_9separator10terminator3tag8filename4line8funcnameyypd_S3SSgSSSiSStFZ", + "mangledName": "$sSo9BugfenderC0A3SDKE5error_9separator10terminator3tag8filename4line8funcnameyypd_S3SSgSSSiSStFZ", + "moduleName": "BugfenderSDK", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "warning", + "printedName": "warning(_:separator:terminator:tag:filename:line:funcname:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:Sa" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Swift.String?", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "hasDefaultArg": true, + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "hasDefaultArg": true, + "usr": "s:Si" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "hasDefaultArg": true, + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So9BugfenderC0A3SDKE7warning_9separator10terminator3tag8filename4line8funcnameyypd_S3SSgSSSiSStFZ", + "mangledName": "$sSo9BugfenderC0A3SDKE7warning_9separator10terminator3tag8filename4line8funcnameyypd_S3SSgSSSiSStFZ", + "moduleName": "BugfenderSDK", + "static": true, + "declAttributes": [ + "AccessControl" + ], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)Bugfender", + "moduleName": "BugfenderSDK", + "isOpen": true, + "objc_name": "Bugfender", + "declAttributes": [ + "ObjC", + "Dynamic" + ], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": [ + "ObjectiveC.NSObject" + ], + "conformances": [ + { + "kind": "Conformance", + "name": "Equatable", + "printedName": "Equatable", + "usr": "s:SQ", + "mangledName": "$sSQ" + }, + { + "kind": "Conformance", + "name": "Hashable", + "printedName": "Hashable", + "usr": "s:SH", + "mangledName": "$sSH" + }, + { + "kind": "Conformance", + "name": "CVarArg", + "printedName": "CVarArg", + "usr": "s:s7CVarArgP", + "mangledName": "$ss7CVarArgP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObservingPublishing", + "printedName": "_KeyValueCodingAndObservingPublishing", + "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP" + }, + { + "kind": "Conformance", + "name": "_KeyValueCodingAndObserving", + "printedName": "_KeyValueCodingAndObserving", + "usr": "s:10Foundation27_KeyValueCodingAndObservingP", + "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 364, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 390, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 757, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 783, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 1129, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 1155, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 1523, + "length": 4, + "value": "\"\n\"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 3822, + "length": 3, + "value": "\" \"" + }, + { + "filePath": "\/Users\/gimix\/git\/bf\/remote-logger-ios\/BugfenderSDK\/BugfenderSDK\/Bugfender.swift", + "kind": "StringLiteral", + "offset": 3848, + "length": 2, + "value": "\"\"" + } + ] +} \ No newline at end of file diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface new file mode 100644 index 0000000..030288d --- /dev/null +++ b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -0,0 +1,21 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target x86_64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name BugfenderSDK +@_exported import BugfenderSDK +import Foundation +import Swift +import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims +extension BugfenderSDK.Bugfender { + public class func print(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) + public class func error(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) + public class func warning(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +} +public func BFLog(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogWarn(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogErr(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogTrace(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogInfo(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogFatal(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func bfprint(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc index 0418f8c..e05a644 100644 Binary files a/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index bcdd1c7..030288d 100644 --- a/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,19 +1,21 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target x86_64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name BugfenderSDK +// swift-compiler-version: Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4) +// swift-module-flags: -target x86_64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -enable-bare-slash-regex -module-name BugfenderSDK @_exported import BugfenderSDK import Foundation import Swift import _Concurrency +import _StringProcessing +import _SwiftConcurrencyShims extension BugfenderSDK.Bugfender { public class func print(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) public class func error(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) public class func warning(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "\n", tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) } -public func BFLog(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogWarn(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogErr(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogTrace(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogInfo(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) -public func BFLogFatal(_ format: Swift.String, _ args: Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLog(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogWarn(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogErr(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogTrace(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogInfo(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) +public func BFLogFatal(_ format: Swift.String, _ args: any Swift.CVarArg..., tag: Swift.String? = nil, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) public func bfprint(_ items: Any..., separator: Swift.String = " ", terminator: Swift.String = "", tag: Swift.String? = nil, level: BugfenderSDK.BFLogLevel = .default, filename: Swift.String = #file, line: Swift.Int = #line, funcname: Swift.String = #function) diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/module.modulemap b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/module.modulemap index bbe235f..bd4e927 100644 --- a/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/module.modulemap +++ b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/Modules/module.modulemap @@ -1,11 +1,11 @@ framework module BugfenderSDK { umbrella header "BugfenderSDK.h" - export * + module * { export * } } module BugfenderSDK.Swift { - header "BugfenderSDK-Swift.h" - requires objc + header "BugfenderSDK-Swift.h" + requires objc } diff --git a/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/_CodeSignature/CodeResources b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/_CodeSignature/CodeResources index 83cc268..050a7f1 100644 --- a/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/_CodeSignature/CodeResources +++ b/BugfenderSDK.xcframework/ios-arm64_x86_64-simulator/BugfenderSDK.framework/_CodeSignature/CodeResources @@ -26,43 +26,59 @@ Headers/BugfenderSDK-Swift.h - goKnCiTLLc5YC3BXYeuUlnVZ1hA= + ecvyv9RbFVvMRUrHbOatPc5/kIE= Headers/BugfenderSDK.h - F8KHDwTKD8B6Rtw5Xqu1sSVKrRo= + voOPfrOlcipjPmRnlC4EwyrwIec= Info.plist - qDBSYqudn9B22gPGczY0iuVoE0A= + PoJAks98wngNth2fp/m0mlSzqrs= + + Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.abi.json + + MoPAmppgZF6iBzZ1PINp9d88llc= + + Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + M6fmzoaC4UCxVa1tgpV+gItiDMA= Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc - eCUprcGV/tgZSP2NE334dUvV+94= + n0XWn5yLEHw6l5BgKwqCARAp6tg= Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface - EWnBlpL+5mkil3Wg3R2IqHZPLdQ= + M6fmzoaC4UCxVa1tgpV+gItiDMA= Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftmodule - bsco+65vXtdzZWUqAZrzqU1vn0c= + ZX+MvErvJsBPoruk1Plx4qjqxh8= + + Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json + + MoPAmppgZF6iBzZ1PINp9d88llc= + + Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface + + xJGQ3WnTgTnyX71VWXKG4uuv8f4= Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - U4ocJLflXEFGIbVWK1v9l9LfbSA= + EwNM64Lr3Jsud4BoDRsMnRIFfXA= Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - +DWYy/rn8HL/AR2XbshLPuD6BvA= + xJGQ3WnTgTnyX71VWXKG4uuv8f4= Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - gUHZBGXULA4YRojr7cJbWutvzDw= + iKQWA3RoL1FZaPFhFsrOuZjG+CA= Modules/module.modulemap - xZtXWOeaGjR4IJPDZoGmvH+flWg= + x/cXF6lKRNspReEtzJCSW0fNGB4= PrivacyInfo.xcprivacy @@ -110,63 +126,91 @@ hash2 - QYi0P74b2+gdSeOuOki5w9Fl5RTlw1denuO7RqatpJI= + +VZJUtL+V+u3+cnec8cLK6r5xzk7EV3zK/PW6JBWAzQ= Headers/BugfenderSDK.h hash2 - lLTKBnJHfpoKXVZ7HSEaX6iez0L+KFO+CK6McDmdVeI= + gJNs1jgKK8Bg5J0W/IY1Y5sCZEPntTo92ZNlwyVehrc= + + + Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.abi.json + + hash2 + + h5p1XIZb8xozu4Ge0xdAbKx/K28709JXEpo2Eo8bhzk= + + + Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + hash2 + + m/SbE8IkjSOBpqHFnLBjNG2oBAH/pWu6Tl5Cs0rff9Q= Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc hash2 - VfOHX/2HUKpb5ganiSS2IW6wA2YiOR/EilPXEDboxSc= + iyaWleKgaKRkEnf1Bh6qhytV7v1aAu4m4Sb7RWffwnM= Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface hash2 - HQlq38sS5qUdKW/zYgKxEomrJ6JVyyQQ7DfI1ztTUgQ= + m/SbE8IkjSOBpqHFnLBjNG2oBAH/pWu6Tl5Cs0rff9Q= Modules/BugfenderSDK.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash2 - kjbuB4qfgs+KbpDdm6rZG2kccoR4Axw8Ke6LHautG8w= + l/GlrVxcYhREM74me97v0j3P8898Rx2j2U6lnZRYyLc= + + + Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json + + hash2 + + h5p1XIZb8xozu4Ge0xdAbKx/K28709JXEpo2Eo8bhzk= + + + Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface + + hash2 + + ByseoRqxWjjWVoRGgZJA6YaWG3z0ldKedAQnoP2qgdE= Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc hash2 - WpDVcuW2lGqRsTYL7b68UKhvtVgK9KshW342ek255Ps= + VsXQNmJXvqLokiCQv+BBWBbL12DvNTZomrf3LHm66UY= Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface hash2 - 2/eIz3pHpB8CcFpdOSJ784+mFtVHgELc2Z2wHlrV5og= + ByseoRqxWjjWVoRGgZJA6YaWG3z0ldKedAQnoP2qgdE= Modules/BugfenderSDK.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash2 - 5xKm3qi+bYPQNdEhfxGUMQLhawbUtRyTnKYO/ck3+kU= + tT91OAs96+ugV/Q58gDYgozyXZzA9GDU7b8MDZ8gd1Q= Modules/module.modulemap hash2 - W+xWtwWp87xBEmAY+kx5GGQKmBGHRQjwFHLpY6afDeQ= + wzagRleOdzlpLhvfj4TWCu3QhjNS5G9PKK5mP8nzzLc= PrivacyInfo.xcprivacy diff --git a/Package.swift b/Package.swift index f6d802b..aafa8f7 100644 --- a/Package.swift +++ b/Package.swift @@ -5,7 +5,7 @@ import PackageDescription let package = Package( name: "BugfenderPackage", platforms: [ - .iOS("11") + .iOS("12") ], products: [ .library( @@ -15,8 +15,8 @@ let package = Package( targets: [ .binaryTarget( name: "BugfenderSDK", - url: "https://github.com/bugfender/BugfenderSDK-iOS/releases/download/1.13.2/BugfenderSDK.xcframework.zip", - checksum: "43c50a80ead9a73a2d99c327ec77e476fb6aa4b150df03d94292444ecdc01db5" + url: "https://github.com/bugfender/BugfenderSDK-iOS/releases/download/2.0.0/BugfenderSDK.xcframework.zip", + checksum: "bb093f8d0467dbcabf891a9809ba7b8d3022255ba17397737640554b50c0a20a" ) ] ) diff --git a/static-lib/include/BFDefaultLogInterceptor.h b/static-lib/include/BFDefaultLogInterceptor.h deleted file mode 100644 index 53bb420..0000000 --- a/static-lib/include/BFDefaultLogInterceptor.h +++ /dev/null @@ -1,13 +0,0 @@ -// -// Created by Fran Montiel on 24/1/23. -// Copyright (c) 2023 Beenario GmbH. All rights reserved. -// - -#import -#import "BFLogInterceptor.h" - -/** - * Default BFLogInterceptor that returns the same BFInterceptedLog that receives - */ -@interface BFDefaultLogInterceptor: NSObject -@end diff --git a/static-lib/include/BFInterceptedLog.h b/static-lib/include/BFInterceptedLog.h deleted file mode 100644 index 0669af7..0000000 --- a/static-lib/include/BFInterceptedLog.h +++ /dev/null @@ -1,60 +0,0 @@ -// -// BFInterceptedLog.h -// BugfenderSDK -// -// Created by Fran Montiel on 24/1/23. -// Copyright © 2023 Beenario GmbH. All rights reserved. -// - -#import - -/** - * Intercepted log from NSLog/OSLog - */ -@interface BFInterceptedLog : NSObject - -/** - * Initializes an BFInterceptedLog with a timestamp, text, and log level. - * @note You will usually not need to use this method. - * @param text Text of the log. - * @param level Level of the log. See BFLogLevel enum for possible values. - * @param date Timestamp of the log. - */ --(instancetype _Nonnull) initWithText: (NSString*_Nonnull) text level: (NSInteger)level date: (NSDate*_Nonnull) date; - -/** - * Line in the source file where the log was originated. - */ -@property (nonatomic, assign) NSInteger line; - -/** - * Level of the log. See BFLogLevel enum for possible values. - */ -@property (nonatomic, assign) NSInteger level; - -/** - * Timestamp of the log. - */ -@property (nonatomic, strong) NSDate * _Nonnull date; - -/** - * Tag (or category) of the log. - */ -@property (nonatomic, strong) NSString * _Nonnull tag; - -/** - * Method of the source file where the log was originated. - */ -@property (nonatomic, strong) NSString * _Nonnull method; - -/** - * Source file name where the log was originated. - */ -@property (nonatomic, strong) NSString * _Nonnull file; - -/** - * Text of the log. - */ -@property (nonatomic, strong) NSString * _Nonnull text; - -@end diff --git a/static-lib/include/BFLogInterceptor.h b/static-lib/include/BFLogInterceptor.h deleted file mode 100644 index dc8496e..0000000 --- a/static-lib/include/BFLogInterceptor.h +++ /dev/null @@ -1,24 +0,0 @@ -// -// NSLogInterceptor.h -// BugfenderSDK -// -// Created by Fran Montiel on 24/1/23. -// Copyright © 2023 Beenario GmbH. All rights reserved. -// - -#import -#import "BFInterceptedLog.h" - -/** - * Intercept a log entry from NSLog/OSLog and allow to modify it or to block it. - */ -@protocol BFLogInterceptor - -/** - * Intercept a log entry from NSLog/OSLog and allow to modify it or to block it. - * @param interceptedLog log intercepted - * @return The log entry to be logged. If nil is returned the log entry won't be logged. - */ -- (BFInterceptedLog *)intercept:(BFInterceptedLog *)interceptedLog; - -@end diff --git a/static-lib/include/BFUserFeedbackNavigationController.h b/static-lib/include/BFUserFeedbackNavigationController.h deleted file mode 100644 index 51679ab..0000000 --- a/static-lib/include/BFUserFeedbackNavigationController.h +++ /dev/null @@ -1,53 +0,0 @@ -// -// BFUserFeedbackViewController.h -// BugfenderSDK -// -// Created by Rubén Vázquez Otero on 15/10/2018. -// Copyright © 2018 Beenario GmbH. All rights reserved. -// - -#if TARGET_OS_IOS - -#import "BFUserFeedbackViewController.h" - -NS_ASSUME_NONNULL_BEGIN - -/** - * Navigation View Controller containing a BFUserFeedbackNavigationController as rootViewController - */ -@interface BFUserFeedbackNavigationController : UINavigationController - - - -/** - * Root View Controller containing a table with the textfields used to gather feedback - */ -@property (nonatomic, strong) BFUserFeedbackViewController *feedbackViewController; - -/** - Provides a View Controller to gather the feedback of the users and sent it to Bugfender. - The returning BFUserFeedbackNavigationController has to be presented modally and it has it's own Send and Cancel buttons - - Additionally, it is possible to customize the aspect of the screen accessing BFUserFeedbackNavigationController.feedbackViewController - - @param title Title for the navigation bar - @param hint Short text at the beginning - @param subjectPlaceholder placeholder in the subject textfield - @param messagePlaceholder placeholder in the message textfield - @param sendButtonTitle title for the send button in the navigation bar - @param cancelButtonTitle title for the cancel button - @return BFUserFeedbackNavigationController containing a BFUserFeedbackViewController as root view controller - */ -+ (BFUserFeedbackNavigationController *)userFeedbackViewControllerWithTitle:(NSString *)title - hint:(NSString *)hint - subjectPlaceholder:(NSString *)subjectPlaceholder - messagePlaceholder:(NSString *)messagePlaceholder - sendButtonTitle:(NSString *)sendButtonTitle - cancelButtonTitle:(NSString *)cancelButtonTitle - completion:(void (^)(BOOL feedbackSent, NSURL * _Nullable url))completionBlock; - - -@end - -NS_ASSUME_NONNULL_END -#endif diff --git a/static-lib/include/BFUserFeedbackViewController.h b/static-lib/include/BFUserFeedbackViewController.h deleted file mode 100644 index 93b5f2c..0000000 --- a/static-lib/include/BFUserFeedbackViewController.h +++ /dev/null @@ -1,114 +0,0 @@ -// -// BFUserFeedbackViewController.h -// BugfenderSDK -// -// Created by Rubén Vázquez Otero on 16/10/2018. -// Copyright © 2018 Beenario GmbH. All rights reserved. -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/** - * BFUserFeedbackViewController provides a basic and configurable view controller to gather feedback from the users - */ -@interface BFUserFeedbackViewController : UITableViewController { - -} - -#pragma mark - Background colors - -/** - The background of the view controller - */ -@property (nonatomic, strong) UIColor *mainBackgroundColor; - -/** - Background for textfields - */ -@property (nonatomic, strong) UIColor *secondaryBackgroundColor; - -#pragma mark - Hint - -/** - The hint is the upper text in the view controller. - Use the hint give instructions to your users or just to thank them for providing feedback - */ -@property (nonatomic, strong) NSString *hint; - -/** - * Font from the hint - */ -@property (nonatomic, strong) UIFont *hintFont; - -/** - * Font color from the hint - */ -@property (nonatomic, strong) UIColor *hintFontColor; - -#pragma mark - Subject - -/** - The subject of the feedback. - Remember to provide a placeholder - */ -@property (nonatomic, strong) UIFont *subjectFont; - -/** - * Font color from the subject textfield - */ -@property (nonatomic, strong) UIColor *subjectFontColor; - -/** - * Font color for the placeholder of the subject textfield - */ -@property (nonatomic, strong) UIColor *subjectPlaceholderFontColor; - -/** - * Subject placeholder - */ -@property (nonatomic, strong) NSString *subjectPlaceholder; - -#pragma mark - Message -/** - The message of the feedback - Remember to provide a placeholder - */ -@property (nonatomic, strong) UIFont *messageFont; - -/** - * Message font color - */ -@property (nonatomic, strong) UIColor *messageFontColor; - -/** - * Message placeholder font color - */ -@property (nonatomic, strong) UIColor *messagePlaceholderFontColor; - -/** - * Message placeholder - */ -@property (nonatomic, strong) NSString *messagePlaceholder; - -#pragma mark - Actions - -/** - * Hide view controller - */ -- (void)dismiss; - -/** - * Send feedback to Bugfender - */ -- (void)sendFeedback; - -/** - Pass a block if you want to be notified after feedback was sent (or not) - */ -@property (nonatomic, copy) void (^completionBlock)(BOOL feedbackSent, NSURL * _Nullable url); - -@end - -NS_ASSUME_NONNULL_END diff --git a/static-lib/include/BugfenderSDK.h b/static-lib/include/BugfenderSDK.h deleted file mode 100644 index cbdcad7..0000000 --- a/static-lib/include/BugfenderSDK.h +++ /dev/null @@ -1,443 +0,0 @@ -// -// BugfenderSDK.h -// BugfenderSDK -// Copyright (c) 2014 Bugfender GmbH. All rights reserved. -// - -#import -#import "BFLogInterceptor.h" -#import "BFDefaultLogInterceptor.h" - -#if TARGET_OS_IOS - -#import "BFUserFeedbackNavigationController.h" - -#endif - -NS_ASSUME_NONNULL_BEGIN - -#define BFLibraryVersionNumber_0_1_0 0 -#define BFLibraryVersionNumber_0_2_0 1 -#define BFLibraryVersionNumber_0_2_1 2 -#define BFLibraryVersionNumber_0_3_0 3 -#define BFLibraryVersionNumber_0_3_1 4 -#define BFLibraryVersionNumber_0_3_2 5 -#define BFLibraryVersionNumber_0_3_3 6 -#define BFLibraryVersionNumber_0_3_4 7 -#define BFLibraryVersionNumber_0_3_5 8 -#define BFLibraryVersionNumber_0_3_6 9 -#define BFLibraryVersionNumber_0_3_7 10 -#define BFLibraryVersionNumber_0_3_8 11 -#define BFLibraryVersionNumber_0_3_9 12 -#define BFLibraryVersionNumber_0_3_10 13 -#define BFLibraryVersionNumber_0_3_11 14 -#define BFLibraryVersionNumber_0_3_12 15 -#define BFLibraryVersionNumber_0_3_13 16 -#define BFLibraryVersionNumber_0_3_14 17 -#define BFLibraryVersionNumber_0_3_15 18 -#define BFLibraryVersionNumber_0_3_16 19 -#define BFLibraryVersionNumber_0_3_17 20 -#define BFLibraryVersionNumber_0_3_18 21 -#define BFLibraryVersionNumber_0_3_19 22 -#define BFLibraryVersionNumber_0_3_20 23 -#define BFLibraryVersionNumber_0_3_21 24 -#define BFLibraryVersionNumber_0_3_22 25 -#define BFLibraryVersionNumber_0_3_23 26 -#define BFLibraryVersionNumber_0_3_24 27 -#define BFLibraryVersionNumber_0_3_25 28 -#define BFLibraryVersionNumber_0_3_26 29 -#define BFLibraryVersionNumber_0_3_27 30 -#define BFLibraryVersionNumber_1_4_0 31 -#define BFLibraryVersionNumber_1_4_1 32 -#define BFLibraryVersionNumber_1_4_2 33 -#define BFLibraryVersionNumber_1_4_3 34 -#define BFLibraryVersionNumber_1_4_4 34 // Mistake: We released the version without incrementing the number. -#define BFLibraryVersionNumber_1_4_5 36 -#define BFLibraryVersionNumber_1_4_6 37 -#define BFLibraryVersionNumber_1_4_7 38 -#define BFLibraryVersionNumber_1_4_8 39 -#define BFLibraryVersionNumber_1_4_9 40 -#define BFLibraryVersionNumber_1_4_10 41 -#define BFLibraryVersionNumber_1_5_0 42 -#define BFLibraryVersionNumber_1_5_1 43 -#define BFLibraryVersionNumber_1_5_2 44 -#define BFLibraryVersionNumber_1_5_3 45 -#define BFLibraryVersionNumber_1_5_4 46 -#define BFLibraryVersionNumber_1_5_5 47 -#define BFLibraryVersionNumber_1_5_6 48 -#define BFLibraryVersionNumber_1_6_0 49 -#define BFLibraryVersionNumber_1_6_1 50 -#define BFLibraryVersionNumber_1_6_2 51 -#define BFLibraryVersionNumber_1_6_3 52 -#define BFLibraryVersionNumber_1_6_4 53 -#define BFLibraryVersionNumber_1_6_5 54 -#define BFLibraryVersionNumber_1_6_6 55 -#define BFLibraryVersionNumber_1_7_0 56 -#define BFLibraryVersionNumber_1_8_0 57 -#define BFLibraryVersionNumber_1_9_0 58 -#define BFLibraryVersionNumber_1_9_1 59 -#define BFLibraryVersionNumber_1_9_2 60 -#define BFLibraryVersionNumber_1_10_0 61 -#define BFLibraryVersionNumber_1_10_1 62 -#define BFLibraryVersionNumber_1_10_2 63 -#define BFLibraryVersionNumber_1_10_3 64 -#define BFLibraryVersionNumber_1_10_4 65 -#define BFLibraryVersionNumber_1_10_5 66 -#define BFLibraryVersionNumber_1_10_6 67 -#define BFLibraryVersionNumber_1_11_0 68 -#define BFLibraryVersionNumber_1_12_0 69 -#define BFLibraryVersionNumber_1_12_1 70 -#define BFLibraryVersionNumber_1_12_2 71 -#define BFLibraryVersionNumber_1_13_0 72 -#define BFLibraryVersionNumber_1_13_1 73 -#define BFLibraryVersionNumber_1_13_2 74 - -/** - * Current Bugfender version number. - * @note This value can be compared with the defined macros BFLibraryVersionNumber_X_Y_Z. - **/ -FOUNDATION_EXPORT double const BFLibraryVersionNumber; - -/** Defines the level of a log */ -typedef NS_ENUM(NSUInteger, BFLogLevel) -{ - /** Default/Debug log level */ - BFLogLevelDefault = 0, - /** Warning log level */ - BFLogLevelWarning = 1, - /** Error log level */ - BFLogLevelError = 2, - /** Trace log level */ - BFLogLevelTrace = 3, - /** Info log level */ - BFLogLevelInfo = 4, - /** Fatal log level */ - BFLogLevelFatal = 5 -}; - -#define BFLog(args, ...) BFLog2(BFLogLevelDefault, nil, args, ##__VA_ARGS__) -#define BFLogWarn(args, ...) BFLog2(BFLogLevelWarning, nil, args, ##__VA_ARGS__) -#define BFLogErr(args, ...) BFLog2(BFLogLevelError, nil, args, ##__VA_ARGS__) -#define BFLogTrace(args, ...) BFLog2(BFLogLevelTrace, nil, args, ##__VA_ARGS__) -#define BFLogInfo(args, ...) BFLog2(BFLogLevelInfo, nil, args, ##__VA_ARGS__) -#define BFLogFatal(args, ...) BFLog2(BFLogLevelFatal, nil, args, ##__VA_ARGS__) - -#define BFLog2(logLevel, tagName, fmt, ...) \ -[Bugfender logWithLineNumber:__LINE__ method:[NSString stringWithFormat:@"%s",__PRETTY_FUNCTION__] file:[[NSString stringWithFormat:@"%s",__FILE__] lastPathComponent] level:logLevel tag:tagName message:fmt == nil ? @"" : [NSString stringWithFormat:fmt, ##__VA_ARGS__]] - - - -/** - * Main Bugfender interface. - **/ -@interface Bugfender : NSObject - -/** ******************************************************************** ** - * @name Configuration - ** ******************************************************************** **/ - -/** - * Sets the URL of the API - * @note Usage of this function is not necessary in the general use case. Please use exclusively when - * directed from technical support. - * @warning This method must be called before activateLogger. - * @param url URL of the API to use - */ -+ (void)setApiURL:(NSURL*)url; - -/** - * Sets the URL of the Bugfender Dashboard - * @note Usage of this function is not necessary in the general use case. Please use exclusively when - * directed from technical support. - * @warning This method must be called before activateLogger. - * @param url base URL of the Bugfender's dashboard - */ -+ (void)setBaseURL:(NSURL*)url; - -/** - * Activates the Bugfender logger for a specific app. - * @param appKey The app key of the Bugfender application, get it in bugfender.com - * @warning If Bugfender has already been initialized with a different app key `NSInvalidArgumentException` will be thrown. - * @note This method needs to be called before any `BFLog` call, otherwise they will be ignored. - **/ -+ (void)activateLogger:(NSString*)appKey; - -/** - * Returns the app key. - * @return The app key, or nil if Bugfender has not been initialized. - **/ -+ (nullable NSString*)appKey; - -/** - * Maximum space available to store local logs. This value is represented in bytes. Default value is 5242880 (1024*1024*5 = 5MB). - * @note If maximumLocalStorageSize is 0 (zero), then there is no limit and everything will be stored locally. - **/ -+ (NSUInteger)maximumLocalStorageSize; - -/** - * Set the maximum space available to store local logs. This value is represented in bytes. There's a limit of 50 MB. - * @param maximumLocalStorageSize Maximum size in bytes. Range accepted is from 1 MB to 50 MB. If the value provider - * is below this range it will be set to 1 MB, if is above the range it will be set to 50 MB - **/ -+ (void)setMaximumLocalStorageSize:(NSUInteger)maximumLocalStorageSize; - -/** - * Returns the device identifier used to identify the current device in the Bugfender website. - * The device identifier is constant while the application is installed in the device. - * @note This string can not be changed, but can be shown to the user or sent to your server, in order to - * keep a relationship between a Bugfender device and a user or some other important event in your application. - * - * @return A string identifying the device. - **/ -+ (NSString*)deviceIdentifier __deprecated_msg("Use deviceIdentifierUrl instead."); - -/** - * Returns a URL linking to the current device in bugfender. - * The device identifier is constant while the application is installed in the device. - * @note This url can be sent to your server and used to create integrations with other services. Also can be stored to - * keep a relationship between a Bugfender device and a user or some other important event in your application. - * - * @return URL linking to the device in Bugfender - **/ -+ (nullable NSURL *)deviceIdentifierUrl; - -/** - * - * The session identifier is constant while the application is running. - * @return A string identifying the current session. - */ -+ (nullable NSString *)sessionIdentifier __deprecated_msg("Use sessionIdentifierUrl instead."); - -/** - * - * The session identifier url is constant while the application is running. - * @note This url can be sent to your server and used to create integrations with other services. - * @return A URL linking to the current session in Bugfender. - */ -+ (nullable NSURL *)sessionIdentifierUrl; - -/** - * Synchronizes all logs with the server all the time, regardless if this device is enabled or not. - * @note This method is useful when the logs should be sent to the server - * regardless if the device is enabled in the Bugfender Console. - * - * Logs are synchronized continuously while forceEnabled is active. - * - * This command can be called anytime, and will take effect the next time the device is online. - * @param enabled Whether logs should be sent regardless of the Bugfender Console settings. - */ -+(void) setForceEnabled:(BOOL)enabled; - -/** - * Gets the status of forceEnabled. - * @see setForceEnabled - */ -+(BOOL) forceEnabled; - -/** - * Prints messages to console for debugging purposes. - * @param enabled Whether printing to console is enabled or not. By default it is enabled. - */ -+(void) setPrintToConsole:(BOOL)enabled; - -/** - * Gets the status of printToConsole. printToConsole prints messages to console. By default it is enabled. - */ -+(BOOL) printToConsole; - -#if TARGET_OS_IOS -/** - * Logs all actions performed and screen changes in the application, such as button touches, swipes and gestures. - */ -+(void)enableUIEventLogging; - -/** - * Logs all actions performed and screen changes in the application, such as button touches, swipes and gestures. - * @param ignoredViewsTags Tags of views that should not be observed and logged by Bugfender - */ -+ (void)enableUIEventLoggingWithIgnoredViewsTags:(NSArray *)ignoredViewsTags; - -#endif - -/** - * Enable crash reporting tool functionality. - */ -+(void)enableCrashReporting; - -/** ******************************************************************** ** - * @name Device details - ** ******************************************************************** **/ - -/** - * Sets the name for the device. If the Device Name is not set, then the iOS standard device name will be automatically sent - * @note This method has to be called prior to activate logger. Otherwise, an exception will be thrown. - * @param deviceName Device name that will be shown in the Dashboard. - */ -+(void)overrideDeviceName:(NSString *)deviceName __deprecated_msg("Use setDeviceString:forKey: instead, which allows to change the name once set. This function will be removed in a future version."); - -/** - * Sets a device detail with boolean type. - * @note Similarly to an NSDictionary, where you can set key-value pairs - * related to a Bugfender device. - * @param b A boolean value. - * @param key Key. - */ -+(void)setDeviceBOOL:(BOOL)b forKey:(NSString*)key; -/** - * Sets a device detail with string type. - * @note Similarly to an NSDictionary, where you can set key-value pairs - * related to a Bugfender device. - * @param s A string value. The maximum length allowed is 192 bytes. - * @param key Key. - */ -+(void)setDeviceString:(NSString*)s forKey:(NSString*)key; -/** - * Sets a device detail with integer type. - * @note Similarly to an NSDictionary, where you can set key-value pairs - * related to a Bugfender device. - * @param i An UInt64 value. - * @param key Key. - */ -+(void)setDeviceInteger:(UInt64)i forKey:(NSString*)key; -/** - * Sets a device detail with double type. - * @note Similarly to an NSDictionary, where you can set key-value pairs - * related to a Bugfender device. - * @param d A double value. - * @param key Key. - */ -+(void)setDeviceDouble:(double)d forKey:(NSString*)key; -/** - * Removes a device detail. - * @note Similarly to an NSDictionary, where you can remove an existent key-value pair - * related to a Bugfender device by indicating its key. - * @param key Key. - */ -+(void)removeDeviceKey:(NSString*)key; - -/** ******************************************************************** ** - * @name Logging - ** ******************************************************************** **/ - -/** - * Bugfender extended interface for logging, which takes a simple string as log message. - * @note This command can be called anytime, and will take effect the next time the device is online. - * For efficiency, several log lines can be sent together to the server with some delay. - * @param lineNumber The line number of the log. - * @param method The method where the log has happened. - * @param file The file where the log has happened. - * @param level Log level. - * @param tag Tag to be applied to the log line. - * @param message Message to be logged. The message will be logged verbatim, no interpretation will be performed. - * @note In Swift, prefer to use bfprint() in order to get file name and line number filled in automatically. In Objective-C you can use the BFLog or BFLog2 macros. - **/ -+ (void) logWithLineNumber:(NSInteger)lineNumber method:(NSString*)method file:(NSString*)file level:(BFLogLevel)level tag:(nullable NSString*)tag message:(NSString*)message NS_SWIFT_NAME(log(lineNumber:method:file:level:tag:message:)); - -/** ******************************************************************** ** - * @name Commands - ** ******************************************************************** **/ - -/** - * Synchronizes all logs with the server once, regardless if this device is enabled or not. - * @note This method is useful when an error condition is detected and the logs should be sent to - * the server for analysis, regardless if the device is enabled in the Bugfender Console. - * - * Logs are synchronized only once. After that, the logs are again sent according to the enabled flag - * in the Bugfender Console. - * - * This command can be called anytime, and will take effect the next time the device is online. - */ -+ (void) forceSendOnce; - -#pragma mark - Issues -/** - * Sends an issue - * @note Sending an issue forces the logs of the current session being sent - * to the server, and marks the session so that it is highlighted in the web console. - * @param title Short description of the issue. - * @param text Full details of the issue. Markdown format is accepted. - * @return the issue identifier - */ -+ (nullable NSString *)sendIssueWithTitle:(NSString *)title text:(NSString *)text __deprecated_msg("Use sendIssueReturningUrlWithTitle:text: instead."); - -/** - * Sends an issue - * @note Sending an issue forces the logs of the current session being sent - * to the server, and marks the session so that it is highlighted in the web console. - * @param title Short description of the issue. - * @param text Full details of the issue. Markdown format is accepted. - * @return an URL linking to the issue in Bugfender - */ -+ (nullable NSURL *)sendIssueReturningUrlWithTitle:(NSString *)title text:(NSString *)text; - -#pragma mark - Crashes - -/** - * Sends a crash - * @note This method will send immediately a crash to the server - * it doesn't take into account if crash reporting is enabled or not - * @param title Short description of the crash. - * @param text Full details of the crarsh. - * @return an URL linking to the crash in Bugfender - */ -+ (nullable NSURL *)sendCrashWithTitle:(NSString *)title text:(NSString *)text; - -#if TARGET_OS_IOS - -#pragma mark - User Feedback - -/** - Provides a View Controller to gather the feedback of the users and sent it to Bugfender. - The returning BFUserFeedbackNavigationController has to be presented modally and it has it's own Send and Cancel buttons - - Additionally, it is possible to customize the aspect of the screen accessing BFUserFeedbackNavigationController.feedbackViewController - - @param title Title for the navigation bar - @param hint Short text at the beginning - @param subjectPlaceholder placeholder in the subject textfield - @param messagePlaceholder placeholder in the message textfield - @param sendButtonTitle title for the send button in the navigation bar - @param cancelButtonTitle title for the cancel button - @return BFUserFeedbackNavigationController containing a BFUserFeedbackViewController as root view controller - */ -+ (BFUserFeedbackNavigationController *)userFeedbackViewControllerWithTitle:(NSString *)title - hint:(NSString *)hint - subjectPlaceholder:(NSString *)subjectPlaceholder - messagePlaceholder:(NSString *)messagePlaceholder - sendButtonTitle:(NSString *)sendButtonTitle - cancelButtonTitle:(NSString *)cancelButtonTitle - completion:(void (^ _Nullable )(BOOL feedbackSent, NSURL * _Nullable url))completionBlock; - -#endif - -/** - Allows to create custom UI to gather user feedback and send to Bugfender. - - @param subject subject of the feedback - @param message message of the feedback - */ -+ (void)sendUserFeedbackWithSubject:(NSString *)subject message:(NSString *)message __deprecated_msg("Use sendUserFeedbackReturningUrlWithSubject:message: instead."); - -/** - Allows to create custom UI to gather user feedback and send to Bugfender. - - @param subject subject of the feedback - @param message message of the feedback - @return URL linking to Bugfender - */ -+ (nullable NSURL *)sendUserFeedbackReturningUrlWithSubject:(NSString *)subject message:(NSString *)message; - -/** - * Logs all logs written via NSLog or OSLog. - */ -+ (void)enableNSLogLogging API_AVAILABLE(macos(10.15), ios(15.0), tvos(15.0), watchos(8.0)); - -/** - * Logs all logs written via NSLog or OSLog. - * @param interceptor intercept the logs and allow to modify or to block them before they are sent to Bugfender - */ -+ (void)enableNSLogLoggingWithInterceptor:(id )interceptor API_AVAILABLE(macos(10.15), ios(15.0), tvos(15.0), watchos(8.0)) NS_SWIFT_NAME(enableNSLogLogging(withInterceptor:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/static-lib/libBugfenderSDK.a b/static-lib/libBugfenderSDK.a deleted file mode 100644 index ae04c58..0000000 Binary files a/static-lib/libBugfenderSDK.a and /dev/null differ