Android Gradle 2.3.3 升级 3.0.1 小记录

简介: 整理 Android Gradle 升级过程中小问题!

      小菜因为种种原因需要升级 Android GradleGradle > 3.0 时默认支持 Java 8;每次大版本升级都会涉及很多内容,小菜尽可能慎重,但还是简单记录一下升级过程中遇到的问题;

升级 classpath 'com.android.tools.build:gradle:3.0.1'

      小菜从 2.3.3 升级到 3.0.1 同步之后会有很多问题;

Q1:

Unable to resolve dependency for ':testsdk@debug/compileClasspath': Could not resolve project :testlibrary.

Unable to resolve dependency for ':testsdk@debugAndroidTest/compileClasspath': Could not resolve project :testlibrary.

...

A1:

      Gradle 3.0.0 以后不能用 debugCompile project / debugCompile project 方式替换为 implementation project 即可;

debugCompile project(path: ':testlibrary', configuration: 'debug')
releaseCompile project(path: ':testlibrary', configuration: 'release')

替换为
implementation project(':testlibrary')

Q2:

All flavors must now belong to a named flavor dimension. Learn more at https://d.android.com/r/tools/flavorDimensions-missing-error-message.html

A3:

      所有类型都必须属于一个指定的类型维度,即一个产品特性组。必须将所有类型分配给类型维度;在需要修改的 Module.build 添加 flavorDimensions "versionCode" 即可;

defaultConfig {
    minSdkVersion rootProject.ext.minSdkVersion
    targetSdkVersion rootProject.ext.targetSdkVersion
    versionCode 1
    versionName "1.0"
    flavorDimensions "versionCode"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

      目前同步完之后没有异常,但是 debug 运行又会有新的问题;

Q3:

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.

A3:

      小菜在项目中应用到 ButterKnife,需要添加注解处理器,使用 annotationProcessor 配置依赖项;

compile "com.jakewharton:butterknife:7.0.1"

替换为
implementation "com.jakewharton:butterknife:7.0.1"
annotationProcessor "com.jakewharton:butterknife:7.0.1"

Q4:

Execution failed for task ':test: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.
    - compiler-1.1.0.jar (android.arch.lifecycle:compiler:1.1.0)
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.

A4:

      小菜在项目中使用了 Lifecycle,需要添加 Lifecycle 依赖项,删除以前 compile lifecycle 方式,将 Google Maven 代码库添加到项目中即可;小菜未使用 AndroidX 可以按需要自定义添加;


def lifecycle_version = "1.1.1"
// 包含ViewModel和LiveData
implementation "android.arch.lifecycle:extensions:$lifecycle_version"
// 仅仅包含ViewModel
implementation "android.arch.lifecycle:viewmodel:$lifecycle_version"
// 仅仅包含LiveData
implementation "android.arch.lifecycle:livedata:$lifecycle_version"
// 仅仅包含Lifecycles
implementation "android.arch.lifecycle:runtime:$lifecycle_version"

annotationProcessor "android.arch.lifecycle:compiler:$lifecycle_version" // For Kotlin use kapt instead of annotationProcessor
// 如果用Java8, 用于替代compiler
implementation "android.arch.lifecycle:common-java8:$lifecycle_version"
// 可选,ReactiveStreams对LiveData的支持
implementation "android.arch.lifecycle:reactivestreams:$lifecycle_version"
// 可选,LiveData的测试
testImplementation "android.arch.core:core-testing:$lifecycle_version"

Q5:

      小菜目前运行打包都正常,但是同样的代码在其他开发同事上运行异常;

Type def recipe not found: /Users/gitspace/SogouNovel/commonlib/build/intermediates/typedefs.txt

A5:

      小菜尝试之后发现,升级到 Gradle 3.0 之后,lamba 的版本也需要更新,将 lamba 的版本更新到 3.7.0 即可;

dependencies {
    classpath 'com.android.tools.build:gradle:3.0.1'
    classpath 'com.sogou.compress:compress-plugin:1.0.1'
    classpath 'me.tatarka:gradle-retrolambda:3.7.0' //retrolambda
}

Tips:

      小菜建议在升级过程中注意混淆文件的处理,尤其是借助三方 SDK 时,注意官网混淆文件的添加;


      至此,小菜升级过程中遇到的小问题基本解决,大部分都可以在官网或参考各路大神的博客,但还是记录尝试一下,对以后遇到的问题进行扩展整理;如有问题,请多多指导!

来源: 阿策小和尚

目录
相关文章
|
2月前
|
Android开发
Android基于gradle task检查各个module之间资源文件冲突情况
Android基于gradle task检查各个module之间资源文件冲突情况
Android基于gradle task检查各个module之间资源文件冲突情况
|
2月前
|
Android开发
Android gradle task任务检查各个module之间资源文件冲突.md
Android gradle task任务检查各个module之间资源文件冲突.md
Android gradle task任务检查各个module之间资源文件冲突.md
|
2月前
|
Java Android开发 Windows
玩转安卓之配置gradle-8.2.1
为安卓开发配置Gradle 8.2.1,包括下载和解压Gradle、配置环境变量、修改配置文件以增加国内镜像,以及在Android Studio中配置Gradle和JDK的过程。
106 0
玩转安卓之配置gradle-8.2.1
|
4月前
|
Android开发
Android Studio: 解决Gradle sync failed 错误
本文介绍了解决Android Studio中出现的Gradle同步失败错误的步骤,包括从`gradle-wrapper.properties`文件中获取Gradle的下载链接,手动下载Gradle压缩包,并替换默认下载路径中的临时文件,然后重新触发Android Studio的"Try Again"来完成同步。
1699 0
Android Studio: 解决Gradle sync failed 错误
|
4月前
|
Java 开发工具 Maven
Flutter和Android中覆盖gradle中的repositories仓库地址
Flutter和Android中覆盖gradle中的repositories仓库地址
216 4
|
4月前
|
Android开发 Kotlin
The Android Gradle plugin supports only Kotlin Gradle plugin version 1.3.10 and higher
The Android Gradle plugin supports only Kotlin Gradle plugin version 1.3.10 and higher
107 3
|
4月前
|
Java 开发工具 Android开发
Android Studio利用Build.gradle导入Git commit ID、Git Branch、User等版本信息
本文介绍了在Android Studio项目中通过修改`build.gradle`脚本来自动获取并添加Git的commit ID、branch名称和用户信息到BuildConfig类中,从而实现在编译时将这些版本信息加入到APK中的方法。
95 0
|
4月前
|
IDE API 开发工具
与Android Gradle Plugin对应的Gradle版本和Android Studio版本
与Android Gradle Plugin对应的Gradle版本和Android Studio版本
506 0
|
4月前
|
Android开发
解决Android、Flutter编译时Gradle报错:javax.net.ssl.SSLException: Connection reset
解决Android、Flutter编译时Gradle报错:javax.net.ssl.SSLException: Connection reset
474 0