当前位置:  开发笔记 > Android > 正文

如何将依赖项添加到项目的顶级build.gradle文件?

如何解决《如何将依赖项添加到项目的顶级build.gradle文件?》经验,为你挑选了1个好方法。

我正在尝试一个实现Google Cloud Messaging(GCM)的示例代码,该代码由Google本身提供,即GCM Demo.

我不知道我究竟能添加依赖项

项目清单

将依赖项添加到项目的顶级build.gradle:

当我转到项目结构>模块>添加然后选择模块依赖关系时,会出现一个弹出屏幕,表示找不到依赖的模块.如果还有另一种方法我可以添加依赖项,那么将会感谢帮助.我已经附加了关于相同的图像.

在此输入图像描述



1> Gabriele Mar..:

如链接中所述.

将依赖项添加到项目的顶级build.gradle:(只需编辑文件)

classpath 'com.google.gms:google-services:1.3.0-beta1'

你应该有这样的somenthing:

//顶级构建文件,您可以在其中添加所有子项目/模块共有的配置选项.

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.3.0'
        classpath 'com.google.gms:google-services:1.3.0-beta1'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

然后将插件添加到您的应用级别build.gradle(只需编辑文件):

apply plugin: 'com.google.gms.google-services'

你应该有这样的somenthing:

apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'

android {
  //..
}

最后在您的应用级别添加依赖项 build.gradle

dependencies {
  compile "com.google.android.gms:play-services:7.5.0"
}

推荐阅读
吻过彩虹的脸_378
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有