From 9e7a3c0699c1fc8e84272de2afcbe6efc9ed0668 Mon Sep 17 00:00:00 2001 From: kezong <379977@qq.com> Date: Tue, 15 Dec 2020 20:45:10 +0800 Subject: [PATCH] UPDATE README --- README.md | 8 ++++++-- README_CN.md | 4 ++++ 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b0a22644..894d753c 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.kezong:fat-aar:1.3.1' + classpath 'com.kezong:fat-aar:1.3.3' } } ``` @@ -30,7 +30,7 @@ Add snippet below to the `build.gradle` of your android library: apply plugin: 'com.kezong.fat-aar' ``` -### Step 2: Embed dependencie +### Step 2: Embed dependencies Declare `embed` for the dependencies you want to merge in `build.gradle`. @@ -131,6 +131,10 @@ The following link which version of Gradle is required for each version of the A [Plugin version and Required Gradle version](https://developer.android.google.cn/studio/releases/gradle-plugin.html) ## Version Log +- [1.3.3]() + - Fix bug that "Can not find task bundleDebugAar". #84 + - Fix bug that crash when module can not resolve. + - Throw a runtime exception when manifest merge fail. - [1.3.1]() - Implement bytecode patching to process R class - Support merge consumerProguardFiles diff --git a/README_CN.md b/README_CN.md index b18f6a51..a5eb00e8 100644 --- a/README_CN.md +++ b/README_CN.md @@ -142,6 +142,10 @@ AAR是Android提供的一种官方文件形式; [Gradle Plugin和所需求的Gradle版本官方文档](https://developer.android.google.cn/studio/releases/gradle-plugin.html) ## 更新日志 +- [1.3.3]() + - 修复异常"Can not find task bundleDebugAar". #84 + - 修复当工程解析失败时产生的异常. + - 当AndroidManifest合并时抛出异常. - [1.3.1]() - R.class合并采用Transform,解决大部分R class找不到的问题. - 支持consumerProguardFiles合并