From 86e743c00865ac7d8bec52b29caaae99ec73d30b Mon Sep 17 00:00:00 2001 From: tianxiangyu <96164429+FlyJingFish@users.noreply.github.com> Date: Fri, 13 Dec 2024 18:31:50 +0800 Subject: [PATCH] =?UTF-8?q?1=E3=80=81=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 +++++++------- docs/android_aop_extra.md | 4 ++-- docs/getting_started.md | 28 ++++++++++++++-------------- docs/zh/android_aop_extra.md | 4 ++-- docs/zh/getting_started.md | 28 ++++++++++++++-------------- gradle.properties | 2 +- version.properties | 4 ++-- 8 files changed, 49 insertions(+), 49 deletions(-) diff --git a/README.md b/README.md index 0cc71de3..875ca105 100644 --- a/README.md +++ b/README.md @@ -126,7 +126,7 @@ plugins { //必须项 👇 apply 设置为 true 自动为所有module“预”配置debugMode,false则按下边步骤五的方式二 - id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.3.2" apply true + id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.3.3" apply true } ```
@@ -136,7 +136,7 @@ buildscript { dependencies { //必须项 👇 - classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.3.2' + classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.3.3' } } // 👇加上这句自动为所有module“预”配置debugMode,不加则按下边步骤五的方式二 @@ -191,7 +191,7 @@ //必须项 👇 plugins { ... - id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.3.2"//最好放在最后一行 + id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.3.3"//最好放在最后一行 } ``` @@ -217,18 +217,18 @@ plugins { dependencies { //必须项 👇 - implementation 'io.github.FlyJingFish.AndroidAop:android-aop-core:2.3.2' + implementation 'io.github.FlyJingFish.AndroidAop:android-aop-core:2.3.3' //非必须项 👇这个包提供了一些常见的注解切面 - implementation 'io.github.FlyJingFish.AndroidAop:android-aop-extra:2.3.2' + implementation 'io.github.FlyJingFish.AndroidAop:android-aop-extra:2.3.3' //必须项 👇如果您项目内已经有了这项不用加也可以 implementation 'androidx.appcompat:appcompat:1.3.0' // 至少在1.3.0及以上 //非必须项 👇,如果你想自定义切面需要用到,⚠️支持Java和Kotlin代码写的切面 - ksp 'io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.3.2' + ksp 'io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.3.3' //非必须项 👇,如果你想自定义切面需要用到,⚠️只适用于Java代码写的切面 - annotationProcessor 'io.github.FlyJingFish.AndroidAop:android-aop-processor:2.3.2' + annotationProcessor 'io.github.FlyJingFish.AndroidAop:android-aop-processor:2.3.3' //⚠️上边的 android-aop-ksp 和 android-aop-processor 二选一 } ``` diff --git a/README_EN.md b/README_EN.md index 6e20d939..12f1f704 100644 --- a/README_EN.md +++ b/README_EN.md @@ -123,7 +123,7 @@ Depend on the plug-in in build.gradle in the project root d 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.3.2" apply true + id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.3.3" apply true } ```
@@ -133,7 +133,7 @@ Depend on the plug-in in build.gradle in the project root d buildscript { dependencies { //Required items 👇 - classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.3.2' + classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.3.3' } } //👇Add this sentence to automatically apply debugMode to all modules. If not, follow step 5 below. @@ -181,7 +181,7 @@ Depend on the plug-in in build.gradle in the project root d //Required items 👇 plugins { ... - id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.3.2" + id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.3.3" } ``` @@ -211,17 +211,17 @@ plugins { dependencies { //Required items 👇 - implementation 'io.github.FlyJingFish.AndroidAop:android-aop-core:2.3.2' + implementation 'io.github.FlyJingFish.AndroidAop:android-aop-core:2.3.3' //Optional 👇This package provides some common annotation aspects - implementation 'io.github.FlyJingFish.AndroidAop:android-aop-extra:2.3.2' + implementation 'io.github.FlyJingFish.AndroidAop:android-aop-extra:2.3.3' //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.3.2' + ksp 'io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.3.3' //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.3.2' + annotationProcessor 'io.github.FlyJingFish.AndroidAop:android-aop-processor:2.3.3' //⚠️Choose one of the above android-aop-ksp and android-aop-processor } ``` diff --git a/docs/android_aop_extra.md b/docs/android_aop_extra.md index 3c04ae8f..eb473ce9 100644 --- a/docs/android_aop_extra.md +++ b/docs/android_aop_extra.md @@ -6,7 +6,7 @@ ```groovy dependencies { //Optional 👇This package provides some common annotation aspects - implementation "io.github.FlyJingFish.AndroidAop:android-aop-extra:2.3.2" + implementation "io.github.FlyJingFish.AndroidAop:android-aop-extra:2.3.3" } ``` @@ -15,7 +15,7 @@ ```kotlin dependencies { //Optional 👇This package provides some common annotation aspects - implementation("io.github.FlyJingFish.AndroidAop:android-aop-extra:2.3.2") + implementation("io.github.FlyJingFish.AndroidAop:android-aop-extra:2.3.3") } ``` diff --git a/docs/getting_started.md b/docs/getting_started.md index 5a98ad4c..340df38f 100644 --- a/docs/getting_started.md +++ b/docs/getting_started.md @@ -28,7 +28,7 @@ Depend on the plug-in in `build.gradle` in the **project root directory** plugins { //👇Required item (1)👈 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.3.2" apply true + id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.3.3" apply true } ``` @@ -40,7 +40,7 @@ Depend on the plug-in in `build.gradle` in the **project root directory** buildscript { dependencies { //👇equired items (1)👈 - classpath "io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.3.2" + classpath "io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.3.3" } } //👇Add this sentence to automatically apply debugMode to all modules. If not, follow step 5 below. @@ -56,7 +56,7 @@ Depend on the plug-in in `build.gradle` in the **project root directory** plugins { //👇Required item (1)👈 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.3.2" apply true + id("io.github.FlyJingFish.AndroidAop.android-aop") version "2.3.3" apply true } ``` @@ -68,7 +68,7 @@ Depend on the plug-in in `build.gradle` in the **project root directory** buildscript { dependencies { //👇Required items (1)👈 - classpath("io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.3.2") + classpath("io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.3.3") } } //👇Add this sentence to automatically apply debugMode to all modules. If not, follow step 5 below. @@ -136,7 +136,7 @@ Add in `build.gradle` of **app** //Required items 👇 plugins { ... - id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.3.2" + id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.3.3" } ``` @@ -146,7 +146,7 @@ Add in `build.gradle` of **app** //Required items 👇 plugins { ... - id("io.github.FlyJingFish.AndroidAop.android-aop") version "2.3.2" + id("io.github.FlyJingFish.AndroidAop.android-aop") version "2.3.3" } ``` @@ -189,17 +189,17 @@ Add in `build.gradle` of **app** dependencies { //👇Required items - implementation "io.github.FlyJingFish.AndroidAop:android-aop-core:2.3.2" + implementation "io.github.FlyJingFish.AndroidAop:android-aop-core:2.3.3" //👇Optional (1)👈 This package provides some common annotation aspects - implementation "io.github.FlyJingFish.AndroidAop:android-aop-extra:2.3.2" + implementation "io.github.FlyJingFish.AndroidAop:android-aop-extra:2.3.3" //👇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 (2)👈Click + to view detailed description, ⚠️supports aspects written in Java and Kotlin code - ksp "io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.3.2" + ksp "io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.3.3" //👇Optional (3)👈Click + to view detailed description, ⚠️only applies to aspects written in Java code - annotationProcessor "io.github.FlyJingFish.AndroidAop:android-aop-processor:2.3.2" + annotationProcessor "io.github.FlyJingFish.AndroidAop:android-aop-processor:2.3.3" //⚠️Choose one of the above android-aop-ksp and android-aop-processor } ``` @@ -218,17 +218,17 @@ Add in `build.gradle` of **app** dependencies { //👇Required items - implementation("io.github.FlyJingFish.AndroidAop:android-aop-core:2.3.2") + implementation("io.github.FlyJingFish.AndroidAop:android-aop-core:2.3.3") //👇Optional (1)👈 This package provides some common annotation aspects - implementation("io.github.FlyJingFish.AndroidAop:android-aop-extra:2.3.2") + implementation("io.github.FlyJingFish.AndroidAop:android-aop-extra:2.3.3") //👇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 (2)👈Click + to view detailed description, ⚠️supports aspects written in Java and Kotlin code - ksp("io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.3.2") + ksp("io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.3.3") //👇Optional (3)👈Click + to view detailed description, ⚠️only applies to aspects written in Java code - annotationProcessor("io.github.FlyJingFish.AndroidAop:android-aop-processor:2.3.2") + annotationProcessor("io.github.FlyJingFish.AndroidAop:android-aop-processor:2.3.3") //⚠️Choose one of the above android-aop-ksp and android-aop-processor } ``` diff --git a/docs/zh/android_aop_extra.md b/docs/zh/android_aop_extra.md index 2b55c103..be2a8741 100644 --- a/docs/zh/android_aop_extra.md +++ b/docs/zh/android_aop_extra.md @@ -6,7 +6,7 @@ ```groovy dependencies { //非必须项 👇这个包提供了一些常见的注解切面 - implementation "io.github.FlyJingFish.AndroidAop:android-aop-extra:2.3.2" + implementation "io.github.FlyJingFish.AndroidAop:android-aop-extra:2.3.3" } ``` @@ -15,7 +15,7 @@ ```kotlin dependencies { //非必须项 👇这个包提供了一些常见的注解切面 - implementation("io.github.FlyJingFish.AndroidAop:android-aop-extra:2.3.2") + implementation("io.github.FlyJingFish.AndroidAop:android-aop-extra:2.3.3") } ``` diff --git a/docs/zh/getting_started.md b/docs/zh/getting_started.md index b6899a61..7286e5c6 100644 --- a/docs/zh/getting_started.md +++ b/docs/zh/getting_started.md @@ -30,7 +30,7 @@ plugins { //👇必须项 (1)👈 apply 设置为 true 自动为所有module“预”配置debugMode,false则按下边步骤五的方式二 - id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.3.2" apply true + id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.3.3" apply true } ``` @@ -41,7 +41,7 @@ buildscript { dependencies { //👇必须项 (1)👈 - classpath "io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.3.2" + classpath "io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.3.3" } } // 👇加上这句自动为所有module“预”配置debugMode,不加则按下边步骤五的方式二 @@ -57,7 +57,7 @@ ```kotlin plugins { //👇必须项 (1)👈 apply 设置为 true 自动为所有module“预”配置debugMode,false则按下边步骤五的方式二 - id("io.github.FlyJingFish.AndroidAop.android-aop") version "2.3.2" apply true + id("io.github.FlyJingFish.AndroidAop.android-aop") version "2.3.3" apply true } ``` @@ -68,7 +68,7 @@ buildscript { dependencies { //👇必须项 (1)👈 - classpath("io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.3.2") + classpath("io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.3.3") } } // 👇加上这句自动为所有module“预”配置debugMode,不加则按下边步骤五的方式二 @@ -137,7 +137,7 @@ //必须项 👇 plugins { ... - id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.3.2"//最好放在最后一行 + id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.3.3"//最好放在最后一行 } ``` @@ -147,7 +147,7 @@ //必须项 👇 plugins { ... - id("io.github.FlyJingFish.AndroidAop.android-aop") version "2.3.2"//最好放在最后一行 + id("io.github.FlyJingFish.AndroidAop.android-aop") version "2.3.3"//最好放在最后一行 } ``` @@ -185,18 +185,18 @@ dependencies { //👇必须项 - implementation "io.github.FlyJingFish.AndroidAop:android-aop-core:2.3.2" + implementation "io.github.FlyJingFish.AndroidAop:android-aop-core:2.3.3" //👇非必须项 (1)👈 这个包提供了一些常见的注解切面 - implementation "io.github.FlyJingFish.AndroidAop:android-aop-extra:2.3.2" + implementation "io.github.FlyJingFish.AndroidAop:android-aop-extra:2.3.3" //👇必须项 如果您项目内已经有了这项不用加也可以 implementation "androidx.appcompat:appcompat:1.3.0" // 至少在1.3.0及以上 //👇非必须项 (2)👈点击+查看详细说明,⚠️支持Java和Kotlin代码写的切面 - ksp "io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.3.2" + ksp "io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.3.3" //👇非必须项 (3)👈点击+查看详细说明,⚠️只适用于Java代码写的切面 - annotationProcessor "io.github.FlyJingFish.AndroidAop:android-aop-processor:2.3.2" + annotationProcessor "io.github.FlyJingFish.AndroidAop:android-aop-processor:2.3.3" //⚠️上边的 android-aop-ksp 和 android-aop-processor 二选一 } @@ -215,18 +215,18 @@ dependencies { //👇必须项 - implementation("io.github.FlyJingFish.AndroidAop:android-aop-core:2.3.2") + implementation("io.github.FlyJingFish.AndroidAop:android-aop-core:2.3.3") //👇非必须项 (1)👈 这个包提供了一些常见的注解切面 - implementation("io.github.FlyJingFish.AndroidAop:android-aop-extra:2.3.2") + implementation("io.github.FlyJingFish.AndroidAop:android-aop-extra:2.3.3") //👇必须项 如果您项目内已经有了这项不用加也可以 implementation("androidx.appcompat:appcompat:1.3.0") // 至少在1.3.0及以上 //👇非必须项 (2)👈点击+查看详细说明,⚠️支持Java和Kotlin代码写的切面 - ksp("io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.3.2") + ksp("io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.3.3") //👇非必须项 (3)👈点击+查看详细说明,⚠️只适用于Java代码写的切面 - annotationProcessor("io.github.FlyJingFish.AndroidAop:android-aop-processor:2.3.2") + annotationProcessor("io.github.FlyJingFish.AndroidAop:android-aop-processor:2.3.3") //⚠️上边的 android-aop-ksp 和 android-aop-processor 二选一 } ``` diff --git a/gradle.properties b/gradle.properties index 401ca8f1..c8a0a619 100644 --- a/gradle.properties +++ b/gradle.properties @@ -41,7 +41,7 @@ DEVELOPER_ID=FlyJingFish DEVELOPER_NAME=FlyJingFish DEVELOPER_EMAIL=749617782@qq.com -TestVersion = 2.3.2 +TestVersion = 2.3.3 SonatypeTestCode = 1573 # 0 mavenLocal 1 SonatypeCache 2 mavenCentral TestType = 0 diff --git a/version.properties b/version.properties index 645129ce..0d8f543e 100644 --- a/version.properties +++ b/version.properties @@ -1,2 +1,2 @@ -#Fri Dec 06 22:28:38 CST 2024 -PROJ_VERSION=2.3.2 +#Fri Dec 13 18:24:08 CST 2024 +PROJ_VERSION=2.3.3