当前位置:   article > 正文

使用Android Studio 3.0以及新版Gradle转移旧版项目可能遇到的几个坑_as3.0 使用低版本gradle

as3.0 使用低版本gradle

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 {
        classpath 'com.android.tools.build:gradle: 2.2.3 ' // 2.3.0
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }

5.还有可能出现这个窗口


也就是叫你更新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.还有其他的话欢迎在评论区补充。

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

闽ICP备14008679号