Не удается найти метафору метода символа (Lookup, String, MethodType, MethodType, MethodHandle, MethodType) - PullRequest
0 голосов
/ 28 октября 2019

После интеграции FireBase в реагировать родной я получаю эту ошибку. Я искал и пытался изменить версию Gradle, кроме того, я переустанавливал инструменты сборки SDK.

Вот мои конфигурации build.gradle

buildscript {
    ext {
        buildToolsVersion = "28.0.3"
        minSdkVersion = 16
        compileSdkVersion = 28
        targetSdkVersion = 28
    }
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath("com.android.tools.build:gradle:3.4.2")
        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
    }
}

enter image description here

...