30 lines
407 B
Objective-C
30 lines
407 B
Objective-C
|
|
|
|
// Created by BuglyManager Example
|
|
// Copyright © 2024 YuMi. All rights reserved.
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "BuglyManager.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
@interface BuglyManagerExample : NSObject <BuglyManagerDelegate>
|
|
|
|
|
|
- (void)setupBuglyDelegate;
|
|
|
|
|
|
- (void)reportBusinessErrorExample;
|
|
|
|
|
|
- (void)reportNetworkErrorExample;
|
|
|
|
|
|
- (void)reportIAPErrorExample;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|