我正在尝试在我的Android项目中为Android FirebaseUI - Auth编写代码但是从最近两天开始,我在当前代码中遇到错误并且不知道如何修复它。努力但没有以正确的方式发生。
这是我的build.gradle(项目:FriendlyChat)
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
mavenLocal()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.google.gms:google-services:3.0.0'
}
}
allprojects {
repositories {
jcenter()
mavenLocal()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
这是我的build.gradle(模块:app)
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
repositories {
mavenLocal()
flatDir {
dirs 'libs'
}
}
android {
compileSdkVersion 24
buildToolsVersion "24.0.1"
defaultConfig {
applicationId "com.google.firebase.udacity.friendlychat"
minSdkVersion 16
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE-FIREBASE.txt'
exclude 'META-INF/NOTICE'
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
// Displaying images
compile 'com.android.support:design:24.2.1'
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.github.bumptech.glide:glide:3.6.1'
compile 'com.google.firebase:firebase-database:11.0.4'
compile 'com.google.firebase:firebase-auth:11.0.4'
compile 'com.google.android.gms:play-services-auth:11.4.0'
testCompile 'junit:junit:4.12'
}
答案 0 :(得分:77)
无法解析com.google.android.gms play-services-auth:11.4.0。
将maven { url "https://maven.google.com" }
添加到根级build.gradle
文件
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
此maven仓库需要从from 11.2.0开始。
您也可以使用google()
快捷方式,但在使用之前请先检查requirements。
因为您使用的是不同的版本,所以请注意。 使用相同的版本。
compile 'com.google.firebase:firebase-database:11.0.4'
compile 'com.google.firebase:firebase-auth:11.0.4'
compile 'com.google.android.gms:play-services-auth:11.4.0'
<强>更新强>
Firebase Android SDK和Google Play服务库now have independent version numbers,允许更频繁,更灵活的更新。 将Google Play服务gradle插件版本更新为最新版本(至少3.3.1)。
classpath 'com.google.gms:google-services:4.0.1'
并将库更新为latest version。
答案 1 :(得分:18)
将google()
存储库添加到&#34; build.gradle&#34;文件。这种gradle方法相当于maven { url "https://maven.google.com" }
。
repositories {
jcenter()
google()
}
答案 2 :(得分:9)
在项目级别的gradle文件中添加它
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
答案 3 :(得分:8)
此错误表示您的Android工作室中未安装Google Play服务11.4.0
要解决此问题,您需要将依赖项的版本更改为Android工作室中安装的版本
为此,请转到:项目结构 - &gt;项目设置 - &gt;模块 - &gt;依赖
点击+号。找到你想要的依赖项。你可以在这里检查它的版本。你也可以从这里添加项目的依赖项。
始终建议您从SDK管理器更新Google Play服务SDK工具并使用最新版本。
答案 4 :(得分:5)
我今天在这里遇到了同样的问题,只需禁用&#34;文件&gt;&gt;上的gradle离线工作选项设置&gt;&gt;构建,执行,部署&gt;&gt; Gradle&gt;&gt;离线工作&#34;。
答案 5 :(得分:2)
更改您的顶级依赖关系gradle设置
//顶级构建文件,您可以在其中添加所有子项目/模块共有的配置选项。
buildscript {
repositories {
jcenter()
mavenLocal()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.google.gms:google-services:3.0.0'
}
}
allprojects {
repositories {
jcenter()
mavenLocal()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
答案 6 :(得分:2)
来自Firebase doc:
// ADD THIS AT THE BOTTOM
apply plugin: 'com.google.gms.google-services'
此行的 底部位置不顶部(下方应用插件:'com.android.application')。
答案 7 :(得分:2)
在我的情况下,我已经开启了gradle offline模式,这就是为什么它找不到该版本播放服务的缓存文件或无法解决的原因。当我把它打开回到网上时,一切都很好。
Android Studio - &gt;&gt;文件 - &gt;&gt; Gradle - &gt;&gt;离线 - &gt;&gt;取消选中
答案 8 :(得分:1)
更改您的顶级依赖关系gradle设置
打开此文件 - &gt;的build.gradle(项目:*****)
和过去的代码
buildscript {
repositories {
mavenLocal()
mavenCentral()
maven {
url "https://maven.google.com"
}
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
或者只是改变
classpath 'com.android.tools.build:gradle:2.2.2'
到
classpath 'com.android.tools.build:gradle:3.0.1'
答案 9 :(得分:0)
在我的情况下,我已经安装了google()
存储库。在重新启动Android Studio之前,我无法解决依赖关系。我的猜测是,由于我当天早些时候让查尔斯打开时有一些挥之不去的代理配置,它无法解决。
答案 10 :(得分:0)
Android Studio 3.2 请按照以下步骤操作。
1。使缓存和重新启动选项无效。 File-> Invalidate / Restart
它将在下一次启动时同步库。
答案 11 :(得分:0)
您可以去Maven查看最新版本
https://mvnrepository.com/artifact/com.google.android.gms/play-services
然后将Maven {URL“ https://maven.google.com”}添加到您的根目录build.gradle文件
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
答案 12 :(得分:0)
> maven {
url "https://maven.google.com"
}
repositories {
jcenter()
google()
}
use this
`implementation 'com.google.android.gms:play-services-ads:19.3.0'`
instead of
`compile 'com.google.android.gms:play-services-auth:11.4.0'`