我在一个系统中创建了一个Android工作室项目,并在构建项目时导入另一个系统我一直在收到此错误 我目前正在使用android SDK 23进行编译
错误:配置项目':app'。
时出现问题到目前为止,事情已经尝试过了 *在模块级别添加依赖项 *将SDK降级为降级版本至21 *安装Google Play服务库找不到play-services-location.jar(com.google.android.gms:play-services-location:7.5.0)。 在以下位置搜索: 文件:/home/Android/Sdk/extras/google/m2repository/com/google/android/gms/play-services-location/7.5.0/play-services-location-7.5.0.jar
请建议
更新
我也尝试过这个。错误:无法解决:com.google.android.gms:play-services-nearby:8.1.0
安装存储库和同步项目
打开文件
在“项目结构”对话框中显示
错误:错误:无法解析:com.google.android.gms:play-services-appindexing:8.1.0
安装存储库和同步项目
打开文件
在“项目结构”对话框中显示
错误:错误:无法解决:com.google.android.gms:play-services-games:8.1.0
安装存储库和同步项目
打开文件
在“项目结构”对话框中显示
当我点击安装存储库时,它会告诉我错误:
"忽略未知的包过滤器' extra-google-m2repository'警告:包过滤器删除了所有包。没有什么可以安装的。
请考虑在没有包过滤器的情况下再次尝试更新。"
答案 0 :(得分:0)
您需要在应用级别添加gradle文件,其中应包含您可以在应用中使用的所有Google Play服务。请阅读以下URL中有关所包含服务的信息(位置服务就是其中之一)。
apply plugin: 'com.android.application'
...
dependencies {
compile 'com.google.android.gms:play-services:8.1.0'
}