我想使用google-services插件与firebase一起使用,但由于我的一台笔记本电脑上的互联网访问湖,我无法连接到jecenter并添加插件。
我已经下载了google-services-3.0.0.jar,但不知道在哪里添加它 以及如何实施
这个项目build.grdle
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
classpath 'com.google.gms:google-services:3.0.0' <---i have the jar
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
答案 0 :(得分:6)
我可以通过在我的lib文件夹中添加jar来从jar中添加插件,并从项目gradle依赖项中调用它,如下所示:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
classpath fileTree(include: ['*.jar'], dir: 'app/libs')
classpath files('app/libs/google-services-3.0.0.jar')
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
答案 1 :(得分:0)
您应该使用*.jar
库创建目录,并在flatDir {}
块中添加repositories {}
,以初始化将jar库保留为存储库的目录:
buildscript {
repositories {
jcenter()
flatDir { dirs 'jarlibs' } // *.jar libs are keep in 'app/jarlibs' dir
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
classpath 'com.google.gms:google-services:3.0.0' // now it works
}
}