无法在android studio中为dependecy项目加载库

时间:2015-12-08 06:58:15

标签: android android-studio

我正在迁移一个包含从EclipseAndroid Studio的5个以上依赖库的大项目。

  

我无法运行编译   'com.google.android.gms:play-services:8.3.0'如果我放   com.android.library但可以通过设置来运行   com.andriod.application

请帮助

here is the screenshot

1 个答案:

答案 0 :(得分:0)

你的gradle文件是这样开始的:

apply plugin: 'com.android.application'
apply plugin: 'com.android.library'

并在“依赖关系”中放置您的依赖项:

dependencies {
    compile 'com.google.android.gms:play-services-gcm:8.3.0'
}