找不到符号方法元工厂(Lookup,String,MethodType,MethodType,MethodHandle,MethodType)

时间:2019-10-28 08:30:31

标签: java react-native android-studio gradle android-sdk-tools

在将firebase集成到react native中后,出现此错误。我已经搜索并尝试更改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

1 个答案:

答案 0 :(得分:2)

使用构建工具28.0.3遇到了相同的问题,

首先在android studio上转到工具> SDK管理器> SDK工具

勾选“显示软件包详细信息”

取消勾选28.0.3即可卸载,然后确定

再次选择安装

enter image description here