遇到的错误总结

1. flavor has no flavor dimension

因为gradle版本太老,更新到较新版本就可以了

同步之后还有一点错误,在下面加入google就好了

allprojects {
    repositories {
        jcenter()
        google()
    }
}

2. could not get unknown property apkvariantdata for object of type

项目中用到了腾讯的编译工具AndResGuard,所用的版本没有兼容最新的gradle,把AndResGuard升级一下就行了

你可能感兴趣的:(Android)