allprojects {
repositories {
// ...
maven { url 'https://maven.google.com' }
}
}
dependencies {
implementation 'com.google.android.gms:play-services-maps:17.0.0'
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation(name:'play-services-maps-17.0.0', ext:'aar')
implementation(name:'play-services-location-17.0.0', ext:'aar')
// ...
}
请注意,您可能需要将版本号更改为您正在使用的正确版本号。
下一篇:AAR文件支持默认清单合并吗?