赞
踩
1.一般转移项目sdk路径一般不一样,这时候AS会提示更改,点击“OK”即可,这个比较简单。
2.提示项目的Gradle没有配置,是否要下载最新的Gradle,一般使用我们安装新版AS时已经有了,不用再次下载了,所以点击取消。
然后就会让你选择Gradle地址,一般在:AS安装目录/gradle/gradle-xx
3.完成上面两步之后可能会出现:
Error:Cause: com.android.build.gradle.tasks.factory.AndroidJavaCompile.setDependencyCacheDir(Ljava/io/File;)V
Consult IDE log for more details (Help | Show Log)
4.此时打开build.gradle点击重新同步后,可能会出现:
Error:The versions of the Android Gradle plugin and Gradle are not compatible.
Please do one of the following:<ul><li>Update your plugin to version 2.4. This will require changes to build.gradle due to API changes.
此时需要修改 build.gradle的com.android.tools.build:gradle版本到你第二步所选择的gradle所支持的版本(如果不知道的到底支持什么版本:1. 那就改2.3.0以上的,然后鼠标悬停在这行代码上,此时AS会提示最新版是多少,可以选择根据提示修改。2.查看你能正确运行的项目的版本,把这句代码copy过来即可)
dependencies {
也就是叫你更新gradle插件,你可以选择更新,但是如果你使用的三方包太多,又不知道他们支不支持最新版的,可以选择不再提醒。
6.最后运行的时候,如果你有用注解框架,还可可能提示:
Error:Execution failed for task ':Library:javaPreCompileDebug'.
> Annotation processors must be explicitly declared now. The following dependencies on the compile classpath are found to contain annotation processor. Please add them to the annotationProcessor configuration.
- butterknife-7.0.1.jar (com.jakewharton:butterknife:7.0.1)
Alternatively, set android.defaultConfig.javaCompileOptions.annotationProcessorOptions.includeCompileClasspath = true to continue with previous behavior. Note that this option is deprecated and will be removed in the future.
See https://developer.android.com/r/tools/annotation-processor-error-message.html for more details.
此时,需要在build.gradle的 Android - defaultConfing 里面添加:
javaCompileOptions {
annotationProcessorOptions {
includeCompileClasspath true
}
}
如果你的项目依赖多个modle,每个modle都需要加上这句。
7.还有其他的话欢迎在评论区补充。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。