From 95cc84aedbd74873eba48e14ad74a398799089a8 Mon Sep 17 00:00:00 2001 From: tianxiangyu <96164429+FlyJingFish@users.noreply.github.com> Date: Thu, 18 Jul 2024 15:42:04 +0800 Subject: [PATCH] =?UTF-8?q?1=E3=80=81=E5=8D=87=E7=BA=A7=E7=89=88=E6=9C=AC?= =?UTF-8?q?=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 14 +++++++------- README_EN.md | 14 +++++++------- gradle.properties | 2 +- version.properties | 4 ++-- 4 files changed, 17 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index bdb9985c..a495a673 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ plugins { //必须项 👇 apply 设置为 true 自动为所有module“预”配置debugMode,false则按下边步骤五的方式二 - id "io.github.FlyJingFish.AndroidAop.android-aop" version "1.9.7" apply true + id "io.github.FlyJingFish.AndroidAop.android-aop" version "1.9.8" apply true } ``` @@ -83,7 +83,7 @@ plugins { buildscript { dependencies { //必须项 👇 - classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:1.9.7' + classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:1.9.8' } } // 👇加上这句自动为所有module“预”配置debugMode,不加则按下边步骤五的方式二 @@ -122,7 +122,7 @@ apply plugin: 'android.aop' //最好放在最后一行 //必须项 👇 plugins { ... - id "io.github.FlyJingFish.AndroidAop.android-aop" version "1.9.7"//最好放在最后一行 + id "io.github.FlyJingFish.AndroidAop.android-aop" version "1.9.8"//最好放在最后一行 } ``` @@ -148,17 +148,17 @@ plugins { dependencies { //必须项 👇 - implementation 'io.github.FlyJingFish.AndroidAop:android-aop-core:1.9.7' - implementation 'io.github.FlyJingFish.AndroidAop:android-aop-annotation:1.9.7' + implementation 'io.github.FlyJingFish.AndroidAop:android-aop-core:1.9.8' + implementation 'io.github.FlyJingFish.AndroidAop:android-aop-annotation:1.9.8' //必须项 👇如果您项目内已经有了这项不用加也可以 implementation 'androidx.appcompat:appcompat:1.3.0' // 至少在1.3.0及以上 //非必须项 👇,如果你想自定义切面需要用到,⚠️支持Java和Kotlin代码写的切面 - ksp 'io.github.FlyJingFish.AndroidAop:android-aop-ksp:1.9.7' + ksp 'io.github.FlyJingFish.AndroidAop:android-aop-ksp:1.9.8' //非必须项 👇,如果你想自定义切面需要用到,⚠️只适用于Java代码写的切面 - annotationProcessor 'io.github.FlyJingFish.AndroidAop:android-aop-processor:1.9.7' + annotationProcessor 'io.github.FlyJingFish.AndroidAop:android-aop-processor:1.9.8' //⚠️上边的 android-aop-ksp 和 android-aop-processor 二选一 } ``` diff --git a/README_EN.md b/README_EN.md index 8249385d..3866a86c 100644 --- a/README_EN.md +++ b/README_EN.md @@ -69,7 +69,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 "1.9.7" apply true + id "io.github.FlyJingFish.AndroidAop.android-aop" version "1.9.8" apply true } ``` @@ -80,7 +80,7 @@ plugins { buildscript { dependencies { //Required items 👇 - classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:1.9.7' + classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:1.9.8' } } //👇Add this sentence to automatically apply debugMode to all modules. If not, follow step 5 below. @@ -119,7 +119,7 @@ Add directly to ```build.gradle``` of **app** //Required items 👇 plugins { ... - id "io.github.FlyJingFish.AndroidAop.android-aop" version "1.9.7" + id "io.github.FlyJingFish.AndroidAop.android-aop" version "1.9.8" } ``` @@ -149,16 +149,16 @@ plugins { dependencies { //Required items 👇 - implementation 'io.github.FlyJingFish.AndroidAop:android-aop-core:1.9.7' - implementation 'io.github.FlyJingFish.AndroidAop:android-aop-annotation:1.9.7' + implementation 'io.github.FlyJingFish.AndroidAop:android-aop-core:1.9.8' + implementation 'io.github.FlyJingFish.AndroidAop:android-aop-annotation:1.9.8' //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:1.9.7' + ksp 'io.github.FlyJingFish.AndroidAop:android-aop-ksp:1.9.8' //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:1.9.7' + annotationProcessor 'io.github.FlyJingFish.AndroidAop:android-aop-processor:1.9.8' //⚠️Choose one of the above android-aop-ksp and android-aop-processor } ``` diff --git a/gradle.properties b/gradle.properties index b70acd70..5d117359 100644 --- a/gradle.properties +++ b/gradle.properties @@ -41,7 +41,7 @@ DEVELOPER_ID=FlyJingFish DEVELOPER_NAME=FlyJingFish DEVELOPER_EMAIL=749617782@qq.com -TestVersion = 1.9.7 +TestVersion = 1.9.8 SonatypeTestCode = 1395 TestType = 0 androidAop.debugMode = true diff --git a/version.properties b/version.properties index 8f2e6992..b4fa1d61 100644 --- a/version.properties +++ b/version.properties @@ -1,2 +1,2 @@ -#Tue Jul 16 16:01:19 CST 2024 -PROJ_VERSION=1.9.7 +#Thu Jul 18 15:35:33 CST 2024 +PROJ_VERSION=1.9.8