Skip to content

Commit

Permalink
1、升级版本
Browse files Browse the repository at this point in the history
  • Loading branch information
FlyJingFish committed Apr 7, 2024
1 parent a58e457 commit eec9faa
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
//必须项 👇
plugins {
...
id "io.github.FlyJingFish.AndroidAop.android-aop" version "1.5.2"
id "io.github.FlyJingFish.AndroidAop.android-aop" version "1.5.3"
}
```

Expand All @@ -75,7 +75,7 @@ plugins {
buildscript {
dependencies {
//必须项 👇
classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:1.5.2'
classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:1.5.3'
}
}
```
Expand All @@ -86,7 +86,7 @@ buildscript {
plugins {
//必须项 👇
id "io.github.FlyJingFish.AndroidAop.android-aop" version "1.5.2" apply false
id "io.github.FlyJingFish.AndroidAop.android-aop" version "1.5.3" apply false
}
```

Expand Down Expand Up @@ -133,17 +133,17 @@ plugins {
dependencies {
//必须项 👇
implementation 'io.github.FlyJingFish.AndroidAop:android-aop-core:1.5.2'
implementation 'io.github.FlyJingFish.AndroidAop:android-aop-annotation:1.5.2'
implementation 'io.github.FlyJingFish.AndroidAop:android-aop-core:1.5.3'
implementation 'io.github.FlyJingFish.AndroidAop:android-aop-annotation:1.5.3'
//必须项 👇如果您项目内已经有了这项不用加也可以
implementation 'androidx.appcompat:appcompat:1.3.0' // 至少在1.3.0及以上
//非必须项 👇,如果你想自定义切面需要用到,⚠️支持Java和Kotlin代码写的切面
ksp 'io.github.FlyJingFish.AndroidAop:android-aop-ksp:1.5.2'
ksp 'io.github.FlyJingFish.AndroidAop:android-aop-ksp:1.5.3'
//非必须项 👇,如果你想自定义切面需要用到,⚠️只适用于Java代码写的切面
annotationProcessor 'io.github.FlyJingFish.AndroidAop:android-aop-processor:1.5.2'
annotationProcessor 'io.github.FlyJingFish.AndroidAop:android-aop-processor:1.5.3'
//⚠️上边的 android-aop-ksp 和 android-aop-processor 二选一
}
```
Expand Down
12 changes: 6 additions & 6 deletions README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Add directly to ```build.gradle``` of **app**
//Required items 👇
plugins {
...
id "io.github.FlyJingFish.AndroidAop.android-aop" version "1.5.2"
id "io.github.FlyJingFish.AndroidAop.android-aop" version "1.5.3"
}
```

Expand All @@ -85,7 +85,7 @@ plugins {
buildscript {
dependencies {
//Required items 👇
classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:1.5.2'
classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:1.5.3'
}
}
```
Expand Down Expand Up @@ -137,12 +137,12 @@ plugins {
dependencies {
//Required items 👇
implementation 'io.github.FlyJingFish.AndroidAop:android-aop-core:1.5.2'
implementation 'io.github.FlyJingFish.AndroidAop:android-aop-annotation:1.5.2'
implementation 'io.github.FlyJingFish.AndroidAop:android-aop-core:1.5.3'
implementation 'io.github.FlyJingFish.AndroidAop:android-aop-annotation:1.5.3'
//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.5.2'
ksp 'io.github.FlyJingFish.AndroidAop:android-aop-ksp:1.5.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:1.5.2'
annotationProcessor 'io.github.FlyJingFish.AndroidAop:android-aop-processor:1.5.3'
//⚠️Choose one of the above android-aop-ksp and android-aop-processor
}
```
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ DEVELOPER_ID=FlyJingFish
DEVELOPER_NAME=FlyJingFish
DEVELOPER_EMAIL=749617782@qq.com

TestVersion = 1.5.2
TestVersion = 1.5.3
SonatypeTestCode = 1395
TestType = 0
# 0 mavenLocal 1 SonatypeCache 2 mavenCentral
Expand Down
4 changes: 2 additions & 2 deletions version.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#Wed Apr 03 22:52:18 CST 2024
PROJ_VERSION=1.5.2
#Sun Apr 07 15:52:52 CST 2024
PROJ_VERSION=1.5.3

0 comments on commit eec9faa

Please sign in to comment.