Android 腾讯bugly更新

  1. 配置:
android {
        defaultConfig {
          ndk {
            //设置支持的SO库架构
            abiFilters 'armeabi' //, 'x86', 'armeabi-v7a', 'x86_64', 'arm64-v8a'
          }
        }
      }
      dependencies {
          //注释掉原有bugly的仓库
          //compile 'com.tencent.bugly:crashreport:latest.release'//其中latest.release指代最新版本号,也可以指定明确的版本号,例如2.3.2
          compile 'com.tencent.bugly:crashreport_upgrade:latest.release'//其中latest.release指代最新版本号,也可以指定明确的版本号,例如1.2.0
          compile 'com.tencent.bugly:nativecrashreport:latest.release' //其中latest.release指代最新版本号,也可以指定明确的版本号,例如2.2.0
      }

 

2.AndroidMainfest.xml中进行以下配置:










注意:网络问题:需添加android:networkSecurityConfig="@xml/network_config";在layout文件夹的同级目录下,新建xml文件夹,放入network_config.xml;文件中配置为:






最后就是初始化了:

CrashReport.initCrashReport(getApplicationContext(), "注册时申请的APPID", false); 

Bugly.init(getApplicationContext(), "注册时申请的APPID", false);

大体就可以完成自动更新服务了,官方文档地址:https://bugly.qq.com/docs/user-guide/instruction-manual-android-upgrade/?v=20180709165613

你可能感兴趣的:(Android 腾讯bugly更新)