对我来说,什么工作是移动google()
之前jcenter()
都在buildscript
和allprojects
的repositories
元素.
在你的情况下:
repositories { maven { url 'https://maven.google.com' } jcenter() // Add your other repositories here }
我也尝试了以下内容,两者都适合我:
repositories { google() jcenter() // Add your other repositories here }