无法在我的android studio项目中使用firebase翻译

3pvhb19x  于 2021-07-12  发布在  Java
关注(0)|答案(0)|浏览(223)

我是androidstudio的新手,在尝试使用firebase翻译时遇到了一个错误,我无法在我的项目中导入firebase和gms库。错误、gradle文件和代码如下,非常感谢您的帮助:))
这是build.gradle(项目)文件

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

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

allprojects {
 repositories {
     google()
     jcenter()
 }
}
task clean(type: Delete) {
 delete rootProject.buildDir
}

我是build.gradle(app:module)文件

plugins {
    id 'com.android.application'
    apply plugin: 'com.google.gms.google-services'
}

android {
    compileSdkVersion 30
    buildToolsVersion "30.0.3"

    defaultConfig {
        applicationId "com.example.firebasetranslation"
        minSdkVersion 23
        targetSdkVersion 30
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

dependencies {

    implementation 'androidx.appcompat:appcompat:1.2.0'
    implementation 'com.google.android.material:material:1.3.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
    testImplementation 'junit:junit:4.+'
    androidTestImplementation 'androidx.test.ext:junit:1.1.2'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
    implementation platform 'com.google.firebase:firebase-bom:27.1.0'
    implementation 'com.google.firebase:firebase-analytics'
    implementation 'com.google.firebase:firebase-ml-natural-language:22.0.0'
    implementation 'com.google.firebase:firebase-ml-natural-language-translate-model:20.0.8'
    implementation 'com.google.firebase:firebase-core:15.0.2'

}

此图像显示我无法使用的所有导入文件
这是生成错误

Re-download dependencies and sync project (requires network)
The state of a Gradle build process (daemon) may be corrupt. Stopping all Gradle daemons may solve this problem.

Stop Gradle build processes (requires restart)
Your project may be using a third-party plugin which is not compatible with the other plugins in the project or the version of Gradle requested by the project.

In the case of corrupt Gradle processes, you can also try closing the IDE and then killing all Java processes.

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题