如何将依赖项添加到项目的顶级 build.gradle 文件?
How to add dependencies to project's top-level build.gradle file?
我正在尝试实现 Google 云消息传递 (GCM) 的示例代码,它由 google 本身提供,GCM Demo.
我不知道如何添加依赖项
- 列表项
- 将依赖项添加到项目的顶级 build.gradle:
- 当我转到“项目结构”>“模块”>“添加”,然后 select“模块依赖项”时,会出现一个弹出屏幕,显示未找到依赖的模块。
如果有另一种方法我可以添加依赖项,那么帮助将是 appreciated.I 附上关于相同的图像。
如 link 中所述。
将依赖项添加到项目的顶级 build.gradle
:(只需编辑文件)
classpath 'com.google.gms:google-services:1.3.0-beta1'
你应该有这样的东西:
// 顶级构建文件,您可以在其中添加所有通用的配置选项 sub-projects/modules。
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'
你应该有这样的东西:
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"
}
我正在尝试实现 Google 云消息传递 (GCM) 的示例代码,它由 google 本身提供,GCM Demo.
我不知道如何添加依赖项
- 列表项
- 将依赖项添加到项目的顶级 build.gradle:
- 当我转到“项目结构”>“模块”>“添加”,然后 select“模块依赖项”时,会出现一个弹出屏幕,显示未找到依赖的模块。 如果有另一种方法我可以添加依赖项,那么帮助将是 appreciated.I 附上关于相同的图像。
如 link 中所述。
将依赖项添加到项目的顶级 build.gradle
:(只需编辑文件)
classpath 'com.google.gms:google-services:1.3.0-beta1'
你应该有这样的东西:
// 顶级构建文件,您可以在其中添加所有通用的配置选项 sub-projects/modules。
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'
你应该有这样的东西:
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"
}