@@ -118,7 +118,7 @@ Depend on the plug-in in <code>build.gradle</code> in the <strong>project root d
118118
119119 plugins {
120120 //Required item 👇 apply is set to true to automatically apply debugMode to all modules, if false, follow step 5 below.
121- id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.2.3 " apply true
121+ id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.2.4 " apply true
122122 }
123123 ```
124124 <details >
@@ -128,7 +128,7 @@ Depend on the plug-in in <code>build.gradle</code> in the <strong>project root d
128128 buildscript {
129129 dependencies {
130130 //Required items 👇
131- classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.2.3 '
131+ classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.2.4 '
132132 }
133133 }
134134 //👇Add this sentence to automatically apply debugMode to all modules. If not, follow step 5 below.
@@ -176,7 +176,7 @@ Depend on the plug-in in <code>build.gradle</code> in the <strong>project root d
176176 //Required items 👇
177177 plugins {
178178 ...
179- id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.2.3 "
179+ id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.2.4 "
180180 }
181181 ```
182182
@@ -206,17 +206,17 @@ plugins {
206206
207207dependencies {
208208 //Required items 👇
209- implementation 'io.github.FlyJingFish.AndroidAop:android-aop-core:2.2.3 '
209+ implementation 'io.github.FlyJingFish.AndroidAop:android-aop-core:2.2.4 '
210210 //Optional 👇This package provides some common annotation aspects
211- implementation 'io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.3 '
211+ implementation 'io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.4 '
212212
213213 //Required item 👇If you already have this item in your project, you don’t need to add it.
214214 implementation 'androidx.appcompat:appcompat:1.3.0' // At least in 1.3.0 and above
215215
216216 //Optional 👇, if you want to customize aspects, you need to use them, ⚠️supports aspects written in Java and Kotlin code
217- ksp 'io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.2.3 '
217+ ksp 'io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.2.4 '
218218 //Optional 👇, if you want to customize aspects, you need to use them, ⚠️only applies to aspects written in Java code
219- annotationProcessor 'io.github.FlyJingFish.AndroidAop:android-aop-processor:2.2.3 '
219+ annotationProcessor 'io.github.FlyJingFish.AndroidAop:android-aop-processor:2.2.4 '
220220 //⚠️Choose one of the above android-aop-ksp and android-aop-processor
221221}
222222```
0 commit comments