我正在尝试将Firebase添加到我的项目中。但我不能...此错误正在显示此错误。我通过工具> Firebase来实现firebase。.

请帮帮我...

这是我的build.gradle:

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

android {
compileSdkVersion 28
buildToolsVersion "29.0.0"
defaultConfig {
    applicationId "com.example.truckapp"
    minSdkVersion 23
    targetSdkVersion 28
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

    multiDexEnabled true
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android-
 optimize.txt'), 'proguard-rules.pro'
        multiDexKeepFile file('multidex-config.txt')
    }
}

}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.navigation:navigation-fragment:2.0.0'
implementation 'androidx.navigation:navigation-ui:2.0.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
//noinspection GradleCompatible
implementation 'com.google.android.gms:play-services-maps:17.0.0'
implementation 'com.google.android.gms:play-services:17.0.0'
implementation 'com.google.android.gms:play-services-places:17.0.0'
implementation 'com.google.firebase:firebase-auth:18.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'

//implementation 'com.google.android.libraries:1.1.0'
// implementation 'com.google.android.gms:play-services-places:11.0.0'
//implementation 'com.google.android.libraries.places:places:1.1.0'
//    implementation 'com.google.android.libraries.places:places:1.1.0'
//    implementation 'com.google.android.libraries.places:places-
 compat:1.1.0'
 implementation 'com.android.support:multidex:1.0.3'

}

这是我的错误信息:



编辑..
这是我的仓库
  buildscript {
    repositories {
    maven {
        url "https://maven.google.com"
    }
    maven {
        url "https://jitpack.io"
    }
    jcenter()
    google()

}
dependencies {
    classpath 'com.android.tools.build:gradle:3.6.0-alpha03'
    classpath 'com.google.gms:google-services:4.0.1'


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

}

我刚刚删除了firebaseAuth依赖项,它构建成功。但是我需要使用firebase。我该怎么办?

请有人帮我

最佳答案

更改此:

  buildscript {
    repositories {
    maven {
        url "https://maven.google.com"
    }
    maven {
        url "https://jitpack.io"
    }
    jcenter()
    google()

}
dependencies {
    classpath 'com.android.tools.build:gradle:3.6.0-alpha03'
    classpath 'com.google.gms:google-services:4.0.1'


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

到这个:
  buildscript {
    repositories {
     google()
    jcenter()

}
dependencies {
    classpath 'com.android.tools.build:gradle:3.6.0-alpha03'
    classpath 'com.google.gms:google-services:4.0.1'


    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
  }
}
apply plugin: 'com.google.gms.google-services'


apply plugin: 'com.google.gms.google-services'的末尾添加build.gradle,然后将google()信息库放在jcenter()信息库之前。

关于android - 错误:无法解决:com.google.android.gms:play-services-flags:12.0.1,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56899815/

10-13 07:45
查看更多