首页 > 代码库 > android 编译错误 Error:(1, 0) Plugin with id 'com.android.application' not found.
android 编译错误 Error:(1, 0) Plugin with id 'com.android.application' not found.
在导入一个项目时,由于它本身的gradle版本比较高,你试用比较旧版本的gradle时就报出Plugin with id ‘com.android.application‘ not found.的错误
如果出现如上错误,只需要在build.gradle中添加下面代码即可:
(直接加在 android{ } 的外面)
buildscript { repositories { jcenter() // or mavenCentral() } dependencies { classpath ‘com.android.tools.build:gradle:1.5.0‘ } } allprojects { repositories { jcenter() } }
参考:http://blog.csdn.net/zhengdan66/article/details/50418747#comments
android 编译错误 Error:(1, 0) Plugin with id 'com.android.application' not found.
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。