bugly的使用

bugly的使用说明文档

最简单的使用方式,除了导包,就一行代码
在build.gradle文件中添加如下代码

compile 'com.tencent.bugly:crashreport:latest.release'
    //其中latest.release指代最新Bugly SDK版本号,也可以指定明确的版本号,例如2.1.9
    compile 'com.tencent.bugly:nativecrashreport:latest.release'
    //其中latest.release指代最新Bugly NDK版本号,也可以指定明确的版本号,例如3.0

接着就是初始化

CrashReport.initCrashReport(getApplicationContext(), "adb454d196", true);//第二个参数是在bugly创建的app的appid的值,第三个参数为true一般用在调试的时候,发布时改为false

你可能感兴趣的:(bugly的使用)