diff --git a/YuMi/Appdelegate/AppDelegate+ThirdConfig.m b/YuMi/Appdelegate/AppDelegate+ThirdConfig.m index e8eb1809..3652f8be 100644 --- a/YuMi/Appdelegate/AppDelegate+ThirdConfig.m +++ b/YuMi/Appdelegate/AppDelegate+ThirdConfig.m @@ -86,14 +86,16 @@ UIKIT_EXTERN NSString * adImageName; #ifdef DEBUG config.debugMode = YES; // debug 模式下,开启调试模式 - config.channel = [YYUtility getAppSource];; config.blockMonitorEnable = YES; // 卡顿监控开关,默认关闭 + config.channel = [YYUtility getAppSource]; + config.blockMonitorEnable = YES; // 卡顿监控开关,默认关闭 config.reportLogLevel = BuglyLogLevelVerbose; // 设置打印日志级别 - [Bugly startWithAppId:@"86cf73b8d5" config:config]; + [Bugly startWithAppId:@"c937fd00f7" config:config]; #else config.debugMode = NO; // release 模式下,关闭调试模式 - config.channel = [YYUtility getAppSource];; config.blockMonitorEnable = NO; // 卡顿监控开关,默认关闭 + config.channel = [YYUtility getAppSource];; + config.blockMonitorEnable = NO; // 卡顿监控开关,默认关闭 config.reportLogLevel = BuglyLogLevelWarn; // 设置自定义日志上报的级别,默认不上报自定义日志 - NSString *buylyKey = isEnterprise == NO ? @"5334684d86" : @"d65df59a68"; + NSString *buylyKey = "8627948559"; // isEnterprise == NO ? @"5334684d86" : @"d65df59a68"; [Bugly startWithAppId:buylyKey config:config]; #endif