当前位置:   article > 正文

AndroidStudio Plugin with id 'android-apt' not found._android studio plugin with id '' not found.

android studio plugin with id '' not found.

AndroidStudio Plugin with id ‘android-apt’ not found.

Error:Error:(2, 0) Plugin with id ‘android-apt’ not found.
原因:导入Moudle时而未导入Project中的相关配置
解决 :在project的gradle文件中配置如下:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.2'
        //添加这行代码
        classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
        classpath 'org.greenrobot:greendao-gradle-plugin:3.2.0'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

拓展:其他not found相关问题,都可以用这方法解决。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/288993
推荐阅读
相关标签
  

闽ICP备14008679号