From 79f827fc59bb98a6ceefefb142e2baba0c95e6f9 Mon Sep 17 00:00:00 2001 From: tianxiangyu <96164429+FlyJingFish@users.noreply.github.com> Date: Thu, 19 Sep 2024 19:23:39 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=87=E7=BA=A7=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 14 +++++++------- README_EN.md | 14 +++++++------- give_list.md | 10 ++++++---- gradle.properties | 6 +++--- version.properties | 4 ++-- 5 files changed, 25 insertions(+), 23 deletions(-) diff --git a/README.md b/README.md index fe3d8179..d009410d 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ plugins { //必须项 👇 apply 设置为 true 自动为所有module“预”配置debugMode,false则按下边步骤五的方式二 - id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.1.5" apply true + id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.1.6" apply true } ``` @@ -95,7 +95,7 @@ buildscript { dependencies { //必须项 👇 - classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.1.5' + classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.1.6' } } // 👇加上这句自动为所有module“预”配置debugMode,不加则按下边步骤五的方式二 @@ -143,7 +143,7 @@ //必须项 👇 plugins { ... - id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.1.5"//最好放在最后一行 + id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.1.6"//最好放在最后一行 } ``` @@ -169,18 +169,18 @@ plugins { dependencies { //必须项 👇 - implementation 'io.github.FlyJingFish.AndroidAop:android-aop-core:2.1.5' + implementation 'io.github.FlyJingFish.AndroidAop:android-aop-core:2.1.6' //非必须项 👇这个包提供了一些常见的注解切面 - implementation 'io.github.FlyJingFish.AndroidAop:android-aop-extra:2.1.5' + implementation 'io.github.FlyJingFish.AndroidAop:android-aop-extra:2.1.6' //必须项 👇如果您项目内已经有了这项不用加也可以 implementation 'androidx.appcompat:appcompat:1.3.0' // 至少在1.3.0及以上 //非必须项 👇,如果你想自定义切面需要用到,⚠️支持Java和Kotlin代码写的切面 - ksp 'io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.1.5' + ksp 'io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.1.6' //非必须项 👇,如果你想自定义切面需要用到,⚠️只适用于Java代码写的切面 - annotationProcessor 'io.github.FlyJingFish.AndroidAop:android-aop-processor:2.1.5' + annotationProcessor 'io.github.FlyJingFish.AndroidAop:android-aop-processor:2.1.6' //⚠️上边的 android-aop-ksp 和 android-aop-processor 二选一 } ``` diff --git a/README_EN.md b/README_EN.md index ce020915..7af2504d 100644 --- a/README_EN.md +++ b/README_EN.md @@ -73,7 +73,7 @@ Using the **plugins DSL**: plugins { //Required item 👇 apply is set to true to automatically apply debugMode to all modules, if false, follow step 5 below. - id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.1.5" apply true + id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.1.6" apply true } ``` @@ -84,7 +84,7 @@ plugins { buildscript { dependencies { //Required items 👇 - classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.1.5' + classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.1.6' } } //👇Add this sentence to automatically apply debugMode to all modules. If not, follow step 5 below. @@ -123,7 +123,7 @@ Add directly to ```build.gradle``` of **app** //Required items 👇 plugins { ... - id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.1.5" + id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.1.6" } ``` @@ -153,17 +153,17 @@ plugins { dependencies { //Required items 👇 - implementation 'io.github.FlyJingFish.AndroidAop:android-aop-core:2.1.5' + implementation 'io.github.FlyJingFish.AndroidAop:android-aop-core:2.1.6' //Optional 👇This package provides some common annotation aspects - implementation 'io.github.FlyJingFish.AndroidAop:android-aop-extra:2.1.5' + implementation 'io.github.FlyJingFish.AndroidAop:android-aop-extra:2.1.6' //Required item 👇If you already have this item in your project, you don’t need to add it. implementation 'androidx.appcompat:appcompat:1.3.0' // At least in 1.3.0 and above //Optional 👇, if you want to customize aspects, you need to use them, ⚠️supports aspects written in Java and Kotlin code - ksp 'io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.1.5' + ksp 'io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.1.6' //Optional 👇, if you want to customize aspects, you need to use them, ⚠️only applies to aspects written in Java code - annotationProcessor 'io.github.FlyJingFish.AndroidAop:android-aop-processor:2.1.5' + annotationProcessor 'io.github.FlyJingFish.AndroidAop:android-aop-processor:2.1.6' //⚠️Choose one of the above android-aop-ksp and android-aop-processor } ``` diff --git a/give_list.md b/give_list.md index d66ec8f8..adb8c5c9 100644 --- a/give_list.md +++ b/give_list.md @@ -2,7 +2,9 @@ 你们的star和支持是我前进的最大动力! -| 昵称 | 日期 | 方式 | 留言 | 友情链接 | 赞赏金额 | -|-----------|:----------:|:----:|:--------------------:|:----:|:------:| -| O*e | 2024-04-11 | 微信 | aop解决了我的问题,请你喝杯瑞[咖啡] | / | ¥ 9.99 | -| j*e | 2024-04-11 | 微信 | 辛苦大佬这么晚帮我找问题 | / | ¥ 88 | \ No newline at end of file +| 昵称 | 日期 | 方式 | 留言 | 友情链接 | 赞赏金额 | +|--|:----------:|:----:|:--------------------:|:----:|:------:| +| O*e | 2024-04-11 | 微信 | aop解决了我的问题,请你喝杯瑞[咖啡] | / | ¥ 9.99 | +| j*e | 2024-04-11 | 微信 | 辛苦大佬这么晚帮我找问题 | / | ¥ 88 | +| *张 | 2024-07-03 | 微信 | / | / | ¥ 64.6 | +| *君 | 2024-09-19 | 微信 | / | / | ¥ 66 | \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index 4f23c3cb..8877b812 100644 --- a/gradle.properties +++ b/gradle.properties @@ -41,9 +41,9 @@ DEVELOPER_ID=FlyJingFish DEVELOPER_NAME=FlyJingFish DEVELOPER_EMAIL=749617782@qq.com -TestVersion = 2.1.5 -SonatypeTestCode = 1567 -TestType = 0 +TestVersion = 2.1.6 +SonatypeTestCode = 1570 +TestType = 1 androidAop.debugMode = true androidAop.debugMode.variantOnlyDebug = true androidAop.reflectInvokeMethod = false diff --git a/version.properties b/version.properties index 212ab302..49369cfd 100644 --- a/version.properties +++ b/version.properties @@ -1,2 +1,2 @@ -#Sat Sep 14 17:08:54 CST 2024 -PROJ_VERSION=2.1.5 +#Thu Sep 19 19:09:43 CST 2024 +PROJ_VERSION=2.1.6