Skip to content

Commit

Permalink
1、升级版本
Browse files Browse the repository at this point in the history
  • Loading branch information
FlyJingFish committed Dec 14, 2023
1 parent c73479f commit f4718d4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@

5、本库支持切点方法为 Lambda 表达式的情况

6、本库支持生成所有切点信息Json文件,方便一览所有切点位置[在此配置](https://github.com/FlyJingFish/AndroidAOP#%E5%9B%9B%E5%9C%A8-app-%E7%9A%84buildgradle%E6%B7%BB%E5%8A%A0-androidaopconfig-%E9%85%8D%E7%BD%AE%E9%A1%B9%E6%AD%A4%E6%AD%A5%E4%B8%BA%E5%8F%AF%E9%80%89%E9%85%8D%E7%BD%AE%E9%A1%B9)
6、本库支持切点方法为 suspend 修饰的协程函数

**7、本库不是基于 AspectJ 实现的,织入代码量极少,侵入性极低**
7、本库支持生成所有切点信息Json文件,方便一览所有切点位置[在此配置](https://github.com/FlyJingFish/AndroidAOP#%E5%9B%9B%E5%9C%A8-app-%E7%9A%84buildgradle%E6%B7%BB%E5%8A%A0-androidaopconfig-%E9%85%8D%E7%BD%AE%E9%A1%B9%E6%AD%A4%E6%AD%A5%E4%B8%BA%E5%8F%AF%E9%80%89%E9%85%8D%E7%BD%AE%E9%A1%B9)

**8、本库不是基于 AspectJ 实现的,织入代码量极少,侵入性极低**


#### [点此下载apk,也可扫下边二维码下载](https://github.com/FlyJingFish/AndroidAOP/blob/master/apk/release/app-release.apk?raw=true)
Expand All @@ -46,7 +48,7 @@
buildscript {
dependencies {
//必须项 👇
classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:1.2.3'
classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:1.2.4'
}
}
plugins {
Expand Down Expand Up @@ -78,12 +80,12 @@ plugins {
dependencies {
//必须项 👇
implementation 'io.github.FlyJingFish.AndroidAop:android-aop-core:1.2.3'
implementation 'io.github.FlyJingFish.AndroidAop:android-aop-annotation:1.2.3'
implementation 'io.github.FlyJingFish.AndroidAop:android-aop-core:1.2.4'
implementation 'io.github.FlyJingFish.AndroidAop:android-aop-annotation:1.2.4'
//非必须项 👇,如果你想自定义切面需要用到,⚠️支持Java和Kotlin代码写的切面
ksp 'io.github.FlyJingFish.AndroidAop:android-aop-ksp:1.2.3'
ksp 'io.github.FlyJingFish.AndroidAop:android-aop-ksp:1.2.4'
//非必须项 👇,如果你想自定义切面需要用到,⚠️只适用于Java代码写的切面
annotationProcessor 'io.github.FlyJingFish.AndroidAop:android-aop-processor:1.2.3'
annotationProcessor 'io.github.FlyJingFish.AndroidAop:android-aop-processor:1.2.4'
//⚠️上边的 android-aop-ksp 和 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=[email protected]

TestVersion = 1.2.3
TestVersion = 1.2.4
SonatypeTestCode = 1297
TestType = 0
# 0 mavenLocal 1 SonatypeCache 2 mavenCentral
4 changes: 2 additions & 2 deletions version.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#Tue Dec 12 21:11:05 CST 2023
PROJ_VERSION=1.2.3
#Thu Dec 14 18:32:26 CST 2023
PROJ_VERSION=1.2.4

0 comments on commit f4718d4

Please sign in to comment.