友盟新旧包适配记录

image.png

注:图片来源于网络

下图是友盟新的仓库,与之前的仓库地址是不同的,需要注意。
首先在项目root目录下修改

    repositories {
        google()
        jcenter()
        maven { url 'https://repo1.maven.org/maven2/' }
    }

其次在module级下的build.gradle修改

    implementation 'com.umeng.umsdk:asms:1.2.2' // asms包依赖(必选)
//    implementation 'com.umeng.umsdk:crash:0.0.5' // native crash包依赖(必选)

    implementation 'com.umeng.umsdk:common:9.3.8'//文章发出时逛网的最新版本
    implementation 'com.umeng.umsdk:share-core:7.1.4'
    implementation 'com.umeng.umsdk:share-board:7.1.4'
    implementation 'com.umeng.umsdk:share-wx:7.1.4'

    implementation 'com.tencent.mm.opensdk:wechat-sdk-android-without-mta:+'//如果有用到微信相关API,记得写上。

注:版本号一定要是最新仓库地址里有的,比我这里展示的版本高或者用我这里展示的版本基本是可以的。

你可能感兴趣的:(友盟新旧包适配记录)