添加“ com.google.android.gms:play-services-location:17.0.0”库时出错

时间:2019-08-02 03:05:18

标签: android build.gradle android-library

添加“ com.google.android.gms:play-services-location:17.0.0”时出错。 尝试了所有方法,但问题仍未解决。

implementation 'com.google.android.gms:play-services-location:17.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'

2 个答案:

答案 0 :(得分:1)

我想我遇到了您的问题,可以看到您使用的是反引号(`)而不是撇号(')。

解决方案:编辑此行:

  

实现'com.google.android.gms:play-services-location:17.0.0`

像这样:

implementation 'com.google.android.gms:play-services-location:17.0.0'

建议: 人们在对您的问题发表评论。尝试跟随他们,编辑标题使其正确,并学习如何正确地提问。欢迎使用stackoverflow!

答案 1 :(得分:0)

确保已将apply plugin: 'com.android.application'添加到build.gradle文件的开头,并参考本文:Adding google play services