android studio导入工程失败,Android Studio导入工程时出现的几种错误
1、Error:failed to find target android-21 : D:\android sdkInstall missing platform(s) and sync project找到一个可用工程,用记事本打开app/build.gradle,找到compileSdkVersion 23buildToolsVersion “23.0.0”将其复制到出错工程的对应位置即可2、E
1、Error:failed to find target android-21 : D:\android sdk
Install missing platform(s) and sync project
找到一个可用工程,用记事本打开app/build.gradle,找到
compileSdkVersion 23
buildToolsVersion “23.0.0”
将其复制到出错工程的对应位置即可
2、Error:Gradle 2.4 requires Android Gradle plugin 1.2.0 (or newer) but project is using version 1.0.0.
Please use Android Gradle plugin 1.2.0 or newer.
Fix plugin version and sync project
找到一个可用工程,用记事本打开工程下的build.gradle,找到
com.android.tools.build:gradle:1.3.0
将其复制到出错工程的对应位置即可
3、运行时出现Failure [INSTALL_FAILED_OLDER_SDK]
网上都说是因为程序源码下的“AndroidManifest.xml”文件中定义了“minSdkVersion”的原因,将其删除就可以解决问题。
可是我源码下的“AndroidManifest.xml”文件中根本就没有“minSdkVersion”内容,这篇博客里找到了解决办法http://blog.sina.com.cn/s/blog_709548200102vfmu.html,用记事本打开app/build.gradle,在里面找到了
minSdkVersion 16
targetSdkVersion 23
参照一个可用工程,将出错工程的对应版本修改过来即可
更多推荐
所有评论(0)