bugly模拟器可用配置

修改包名
This commit is contained in:
2025-11-03 21:04:39 +08:00
parent 5af2612ff7
commit cb5819e330
20 changed files with 278 additions and 278 deletions

View File

@@ -8,7 +8,9 @@
#import "AppDelegate.h"
#import "KBPermissionViewController.h"
#import <AFNetworking/AFNetworking.h>
#if !DEBUG
#import <Bugly/Bugly.h>
#endif
#import "BaseTabBarController.h"
#import "LoginViewController.h"
#import "KBLoginSheetViewController.h"
@@ -17,8 +19,8 @@
// bundle id target
// PRODUCT_BUNDLE_IDENTIFIER
// CustomKeyboard target com.keyBoardst.CustomKeyboard
static NSString * const kKBKeyboardExtensionBundleId = @"com.keyBoardst.CustomKeyboard";
// CustomKeyboard target com.loveKey.nyx.CustomKeyboard
static NSString * const kKBKeyboardExtensionBundleId = @"com.loveKey.nyx.CustomKeyboard";
@implementation AppDelegate
@@ -30,11 +32,15 @@ static NSString * const kKBKeyboardExtensionBundleId = @"com.keyBoardst.CustomKe
[KBNetworkManager shared].enabled = YES;
///
[self getNetJudge];
/// Bugly
#if !DEBUG
/// Bugly
BuglyConfig *buglyConfig = [BuglyConfig new];
/// GroupID
// buglyConfig.applicationGroupIdentifier = @"";
[Bugly startWithAppId:BuglyId config:buglyConfig];
#endif
// KBGuideVC
return YES;
}