Flutter导入安卓第三方库报错:Flutter Could not find method implementation() 的可能原因及解决办法

build.gradle里面试图添加引用一个库:

kotlin 复制代码
buildscript {
    ext.kotlin_version = '1.7.10'
    repositories {
        google()
        mavenCentral()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:7.2.0'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        implementation 'com.abc.def:ghi:114.514.1919810'
    }
}

然后运行的时候报错:

A problem occurred evaluating root project 'android'.
> Could not find method implementation() for arguments [com.abc.def:ghi:114.514.1919810] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.

可能原因:Flutter项目的android目录下有两个build.gradle文件,一个是android/build.gradle,另一个是android/app/build.gradle,在前者文件里面添加引用就会出这个错,解决办法是改在后者文件中另起一行添加:

kotlin 复制代码
dependencies {
    implementation 'com.abc.def:ghi:114.514.1919810'
}

参考来源:https://ourcodeworld.com/articles/read/1590/how-to-solve-android-error-could-not-find-method-implementation-for-arguments-on-object-of-type-orggradleapiinternalartifactsdsldependenciesdefaultdependencyhandler

相关推荐
柯南二号2 小时前
Task ‘wrapper‘ not found in project ‘:example‘. 报错解决
android·gradle·hippy
我又来搬代码了2 小时前
【Android】项目升级时报错 android:style/Holo.Widget
android·gitee
kirk_wang4 小时前
Flutter适配HarmonyOS实践
flutter·华为·harmonyos
洞见不一样的自己5 小时前
android 常用方法
android
暗碳5 小时前
华为麦芒5(安卓6)termux记录 使用ddns-go,alist
android·linux
seven27295 小时前
Android MQTT关于断开连接disconnect报错原因
android·mqtt·disconnect报错
Maplee9 小时前
Compose 转场动画之 Transition
android·前端
weixin_4825655310 小时前
Android IC读写器安卓小程序 3
android·小程序
hvinsion11 小时前
Python PDF批量加密工具
android·python·pdf
m0_7482304411 小时前
【MySQL】数据库开发技术:内外连接与表的索引穿透深度解析
android·mysql·数据库开发