腾讯Bugly 使用手册

腾讯Bugly官网
https://bugly.qq.com/docs/user-guide/instruction-manual-android/?v=20180119105842

添加依赖:
compile 'com.tencent.bugly:crashreport:latest.release'
compile 'com.tencent.bugly:nativecrashreport:latest.release'


ndk {
    // 设置支持的SO库架构
    abiFilters 'armeabi' , 'x86' //, 'armeabi-v7a', 'x86_64', 'arm64-v8a'
}


参数配置
在AndroidManifest.xml中添加权限:







请避免混淆Bugly,在Proguard混淆文件中增加以下配置:
-dontwarn com.tencent.bugly.**
-keep public class com.tencent.bugly.**{*;}



最简单的初始化
获取APP ID并将以下代码复制到项目Application类onCreate()中,Bugly会为自动检测环境并完成配置:
//腾讯bugly初始化, 本质上腾讯的bugly核心类就是一个自定义的 MyCaughtException
CrashReport.initCrashReport(getApplicationContext(), "注册时申请的APPID", false);

你可能感兴趣的:(腾讯Bugly 使用手册)