Java 原因:org.jetbrains.plugins.gradle.tooling.util错误

Java 原因:org.jetbrains.plugins.gradle.tooling.util错误,java,android,android-studio,Java,Android,Android Studio,别紧张, 我试图得到所有的组合,但我不能得到一个错误,我不能找出它。原因是:原因:org.jetbrains.plugins.gradle.tooling.util.ModuleComponentIdentifier impl.getModuleIdentifier()Lorg/gradle/api/artifacts/ModuleIdentifier 更多信息 Gradle同步失败:原因:org.jetbrains.plugins.Gradle.tooling.util.ModuleCompo

别紧张, 我试图得到所有的组合,但我不能得到一个错误,我不能找出它。原因是:原因:org.jetbrains.plugins.gradle.tooling.util.ModuleComponentIdentifier impl.getModuleIdentifier()Lorg/gradle/api/artifacts/ModuleIdentifier

更多信息

Gradle同步失败:原因:org.jetbrains.plugins.Gradle.tooling.util.ModuleComponentIdentifier impl.getModuleIdentifier()Lorg/Gradle/api/artifacts/ModuleIdentifier; 有关更多详细信息,请参阅IDE日志(帮助|显示日志)(734毫秒)


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

android {
    compileSdkVersion 29
    buildToolsVersion '29.0.2'
    defaultConfig {
        applicationId "pubg.looter.map"
        minSdkVersion 22
        targetSdkVersion 29
        versionCode 2
        versionName "1.1"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'com.google.firebase:firebase-messaging:19.0.1'
    implementation 'com.google.android.gms:play-services-ads:18.1.0'


}
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        google()
        jcenter()

    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.4.1'
        classpath 'com.google.gms:google-services:4.2.0'

        // 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
}