我应该如何处理“找不到实现方法”错误?

时间:2019-12-28 00:50:37

标签: android react-native android-studio gradle

我正在开发一个React本机应用程序,并且安装了react-navigation库及其依赖项。然后,当我尝试使用Android Studio运行应用程序后,出现此错误:

错误:未找到Gradle DSL方法:“ implementation()” 可能的原因: 项目“ MealApp”可能正在使用不包含该方法的Gradle版本。 打开Gradle包装器文件

构建文件可能缺少Gradle插件。 应用Gradle插件

我什么都没做,这个错误刚刚弹出。我该怎么做才能摆脱这烦人的事情?

1 个答案:

答案 0 :(得分:0)

该实现在3.之后的Gradle版本中受支持。尝试在android/build.gradle中进行如下更改

buildscript {
    repositories {
        google()
        jcenter()

    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.4.1'

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

同时,更改gradle-wrapper.properties Gradle版本

distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip