-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update to ios sdk 1.13.2 and android sdk 3.2.0
- Loading branch information
Showing
95 changed files
with
5,943 additions
and
239 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
...s/Plugins/Android/android-3.0.16.aar.meta → ...ts/Plugins/Android/android-3.2.0.aar.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
33 changes: 0 additions & 33 deletions
33
Assets/Plugins/iOS/BFUserFeedbackNavigationController.h.meta
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
9 changes: 5 additions & 4 deletions
9
Assets/Plugins/iOS/libBugfenderSDK.a.meta → ...Plugins/iOS/BugfenderSDK.xcframework.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>AvailableLibraries</key> | ||
<array> | ||
<dict> | ||
<key>LibraryIdentifier</key> | ||
<string>ios-arm64_x86_64-simulator</string> | ||
<key>LibraryPath</key> | ||
<string>BugfenderSDK.framework</string> | ||
<key>SupportedArchitectures</key> | ||
<array> | ||
<string>arm64</string> | ||
<string>x86_64</string> | ||
</array> | ||
<key>SupportedPlatform</key> | ||
<string>ios</string> | ||
<key>SupportedPlatformVariant</key> | ||
<string>simulator</string> | ||
</dict> | ||
<dict> | ||
<key>LibraryIdentifier</key> | ||
<string>ios-arm64</string> | ||
<key>LibraryPath</key> | ||
<string>BugfenderSDK.framework</string> | ||
<key>SupportedArchitectures</key> | ||
<array> | ||
<string>arm64</string> | ||
</array> | ||
<key>SupportedPlatform</key> | ||
<string>ios</string> | ||
</dict> | ||
<dict> | ||
<key>LibraryIdentifier</key> | ||
<string>ios-arm64_x86_64-maccatalyst</string> | ||
<key>LibraryPath</key> | ||
<string>BugfenderSDK.framework</string> | ||
<key>SupportedArchitectures</key> | ||
<array> | ||
<string>arm64</string> | ||
<string>x86_64</string> | ||
</array> | ||
<key>SupportedPlatform</key> | ||
<string>ios</string> | ||
<key>SupportedPlatformVariant</key> | ||
<string>maccatalyst</string> | ||
</dict> | ||
</array> | ||
<key>CFBundlePackageType</key> | ||
<string>XFWK</string> | ||
<key>XCFrameworkFormatVersion</key> | ||
<string>1.0</string> | ||
</dict> | ||
</plist> |
Binary file added
BIN
+3.56 MB
Assets/Plugins/iOS/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/BugfenderSDK
Binary file not shown.
13 changes: 13 additions & 0 deletions
13
...gfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Headers/BFDefaultLogInterceptor.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// | ||
// Created by Fran Montiel on 24/1/23. | ||
// Copyright (c) 2023 Beenario GmbH. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
#import "BFLogInterceptor.h" | ||
|
||
/** | ||
* Default BFLogInterceptor that returns the same BFInterceptedLog that receives | ||
*/ | ||
@interface BFDefaultLogInterceptor: NSObject<BFLogInterceptor> | ||
@end |
60 changes: 60 additions & 0 deletions
60
.../iOS/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Headers/BFInterceptedLog.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
// | ||
// BFInterceptedLog.h | ||
// BugfenderSDK | ||
// | ||
// Created by Fran Montiel on 24/1/23. | ||
// Copyright © 2023 Beenario GmbH. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
/** | ||
* 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 |
24 changes: 24 additions & 0 deletions
24
.../iOS/BugfenderSDK.xcframework/ios-arm64/BugfenderSDK.framework/Headers/BFLogInterceptor.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// | ||
// NSLogInterceptor.h | ||
// BugfenderSDK | ||
// | ||
// Created by Fran Montiel on 24/1/23. | ||
// Copyright © 2023 Beenario GmbH. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
#import "BFInterceptedLog.h" | ||
|
||
/** | ||
* Intercept a log entry from NSLog/OSLog and allow to modify it or to block it. | ||
*/ | ||
@protocol BFLogInterceptor <NSObject> | ||
|
||
/** | ||
* 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.