Skip to content

Commit

Permalink
update to ios sdk 1.13.2 and android sdk 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jgimenez committed May 7, 2024
1 parent d78ec8c commit f91feef
Show file tree
Hide file tree
Showing 95 changed files with 5,943 additions and 239 deletions.
2 changes: 1 addition & 1 deletion Assets/Bugfender/Scripts/Bugfender.cs.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file removed Assets/Plugins/Android/android-3.0.16.aar
Binary file not shown.
Binary file added Assets/Plugins/Android/android-3.2.0.aar
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 0 additions & 33 deletions Assets/Plugins/iOS/BFUserFeedbackNavigationController.h.meta

This file was deleted.

33 changes: 0 additions & 33 deletions Assets/Plugins/iOS/BFUserFeedbackViewController.h.meta

This file was deleted.

2 changes: 1 addition & 1 deletion Assets/Plugins/iOS/BugfenderBridge.mm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#import <Foundation/Foundation.h>
#import "BugfenderSDK.h"
#import <BugfenderSDK/BugfenderSDK.h>

char* convertNSStringToCString(const NSString* nsString)
{
Expand Down
80 changes: 0 additions & 80 deletions Assets/Plugins/iOS/BugfenderSDK.h.meta

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

55 changes: 55 additions & 0 deletions Assets/Plugins/iOS/BugfenderSDK.xcframework/Info.plist
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 not shown.
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
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
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
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// BugfenderSDK
//
// Created by Rubén Vázquez Otero on 15/10/2018.
// Copyright © 2018 Mobile Jazz. All rights reserved.
// Copyright © 2018 Beenario GmbH. All rights reserved.
//

#if TARGET_OS_IOS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// BugfenderSDK
//
// Created by Rubén Vázquez Otero on 16/10/2018.
// Copyright © 2018 Mobile Jazz. All rights reserved.
// Copyright © 2018 Beenario GmbH. All rights reserved.
//

#import <UIKit/UIKit.h>
Expand Down
Loading

0 comments on commit f91feef

Please sign in to comment.