implementation 'com.tencent.bugly:crashreport_upgrade:latest.release'//其中latest.release指代最新版本号,也可以指定明确的版本号,例如1.2.0
implementation 'com.tencent.bugly:nativecrashreport:latest.release' //其中latest.release指代最新版本号,也可以指定明确的版本号,例如2.2.0
private void initBugly() {
// Beta.checkUpgrade(false,false);//TODO 只有点击的更新的时候使用 手动检查更新 bugly初始化的时候已经自动检查更新了的
// CrashReport.initCrashReport(getApplicationContext(), "9f1bd3", false);
Bugly.init(getApplicationContext(), "9f1bd3", false);
}