Could not find method implementation()

编译时出现该问题

* What went wrong:
A problem occurred evaluating project ‘:app’.
> Could not find method implementation() for arguments [com.android.support:appcompat-v7:26.1.0] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.

原因:

    implementation是gradle版本3.0之后才支持的,出现该问题代表你的gradle版本过低。

解决方案

方案一:将implementation改为compile
方案二:升级build.gradle文件中的Gradle版本
    原文作者:有名字吗
    原文地址: https://www.jianshu.com/p/3fe7b56a380b
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞