归志宁无五亩园,读书本意在元元。这篇文章主要讲述Android studio 导入项目错误Plugin with id‘com.XXXX相关的知识,希望能为你提供帮助。
1.打开AS,展开项目列表
文章图片
打开方框中的build.gradle。
2.添加
buildscript {
repositories {
mavenCentral() // or jcenter()
}
dependencies {
classpath ‘com.android.tools.build:gradle:3.0.1‘// 版本号 根据自己的版本修改
}
}
allprojects {
repositories {
jcenter()
}
}
如图
文章图片
3.修改完毕后,如果出现 junit 错误的提示,
则修改
dependencies {
compile fileTree(dir: ‘libs‘, include: [‘*.jar‘])
testCompile ‘junit:junit:4.12‘
compile ‘com.android.support:appcompat-v7:25.1.0‘
}
为
dependencies {
compile fileTree(dir: ‘libs‘, include: [‘*.jar‘])
//testCompile ‘junit:junit:4.12‘
testImplementation ‘junit:junit:4.12‘
compile ‘com.android.support:appcompat-v7:25.1.0‘
}
【Android studio 导入项目错误Plugin with id‘com.XXXX】最后重新build就OK!
推荐阅读
- tomcat会自动解压webapps目录下的war包
- weex 启动 android 模拟器(mac环境)
- linphone-android-客户端APP-工程解读
- 公众号都要做APP了!
- Error:(27, 13) Failed to resolve: com.android.support.constraint:constraint-layout:1.0.2约束布局constrai
- MUIHbuilder设置夜神模拟器运行APP项目
- 《android开发艺术探索》读书笔记--Android的线程和线程池
- android仿微信红包动画Kotlin综合应用Xposed模块炫酷下拉视觉UC浏览器滑动动画等源码
- jetty9 web app的部署