chore: Initial clean commit

- 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
This commit is contained in:
edwinQQQ
2025-10-09 16:19:14 +08:00
commit a35a711be6
5582 changed files with 408913 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
//
// 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