AS集成Bugly流程

第一步:app的build文件

ndk {
    // 设置支持的SO库架构
    abiFilters 'armeabi' //, 'x86', 'armeabi-v7a', 'x86_64', 'arm64-v8a'
}
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

第二步:在AndroidManifest.xml中添加权限






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

第四步:获取APP ID并将以下代码复制到项目Application类onCreate()中,Bugly会为自动检测环境并完成配置
CrashReport.initCrashReport(getApplicationContext(), "注册时申请的APPID", false);

你可能感兴趣的:(AS集成Bugly流程)