
- Removed YuMi/Library/ (138 MB, not tracked) - Removed YuMi/Resources/ (23 MB, not tracked) - Removed old version assets (566 files, not tracked) - Excluded Pods/, xcuserdata/ and other build artifacts - Clean repository optimized for company server deployment
43 lines
673 B
Objective-C
43 lines
673 B
Objective-C
//
|
|
// BuglyManagerExample.h
|
|
// YuMi
|
|
//
|
|
// Created by BuglyManager Example
|
|
// Copyright © 2024 YuMi. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "BuglyManager.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
* BuglyManager 使用示例类
|
|
* 展示如何使用 BuglyManager 的各种功能
|
|
*/
|
|
@interface BuglyManagerExample : NSObject <BuglyManagerDelegate>
|
|
|
|
/**
|
|
* 设置 Bugly 代理
|
|
*/
|
|
- (void)setupBuglyDelegate;
|
|
|
|
/**
|
|
* 上报业务错误示例
|
|
*/
|
|
- (void)reportBusinessErrorExample;
|
|
|
|
/**
|
|
* 上报网络错误示例
|
|
*/
|
|
- (void)reportNetworkErrorExample;
|
|
|
|
/**
|
|
* 上报内购错误示例
|
|
*/
|
|
- (void)reportIAPErrorExample;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|