Skip to content

Commit

Permalink
升级版本
Browse files Browse the repository at this point in the history
  • Loading branch information
FlyJingFish committed Oct 27, 2024
1 parent a86fd60 commit 9494e9d
Show file tree
Hide file tree
Showing 8 changed files with 49 additions and 49 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
plugins {
//必须项 👇 apply 设置为 true 自动为所有module“预”配置debugMode,false则按下边步骤五的方式二
id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.2.5" apply true
id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.2.6" apply true
}
```
<details>
Expand All @@ -134,7 +134,7 @@
buildscript {
dependencies {
//必须项 👇
classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.2.5'
classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.2.6'
}
}
// 👇加上这句自动为所有module“预”配置debugMode,不加则按下边步骤五的方式二
Expand Down Expand Up @@ -189,7 +189,7 @@
//必须项 👇
plugins {
...
id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.2.5"//最好放在最后一行
id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.2.6"//最好放在最后一行
}
```

Expand All @@ -215,18 +215,18 @@ plugins {
dependencies {
//必须项 👇
implementation 'io.github.FlyJingFish.AndroidAop:android-aop-core:2.2.5'
implementation 'io.github.FlyJingFish.AndroidAop:android-aop-core:2.2.6'
//非必须项 👇这个包提供了一些常见的注解切面
implementation 'io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.5'
implementation 'io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.6'
//必须项 👇如果您项目内已经有了这项不用加也可以
implementation 'androidx.appcompat:appcompat:1.3.0' // 至少在1.3.0及以上
//非必须项 👇,如果你想自定义切面需要用到,⚠️支持Java和Kotlin代码写的切面
ksp 'io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.2.5'
ksp 'io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.2.6'
//非必须项 👇,如果你想自定义切面需要用到,⚠️只适用于Java代码写的切面
annotationProcessor 'io.github.FlyJingFish.AndroidAop:android-aop-processor:2.2.5'
annotationProcessor 'io.github.FlyJingFish.AndroidAop:android-aop-processor:2.2.6'
//⚠️上边的 android-aop-ksp 和 android-aop-processor 二选一
}
```
Expand Down
14 changes: 7 additions & 7 deletions README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ Depend on the plug-in in <code>build.gradle</code> in the <strong>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.2.5" apply true
id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.2.6" apply true
}
```
<details>
Expand All @@ -131,7 +131,7 @@ Depend on the plug-in in <code>build.gradle</code> in the <strong>project root d
buildscript {
dependencies {
//Required items 👇
classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.2.5'
classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.2.6'
}
}
//👇Add this sentence to automatically apply debugMode to all modules. If not, follow step 5 below.
Expand Down Expand Up @@ -179,7 +179,7 @@ Depend on the plug-in in <code>build.gradle</code> in the <strong>project root d
//Required items 👇
plugins {
...
id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.2.5"
id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.2.6"
}
```

Expand Down Expand Up @@ -209,17 +209,17 @@ plugins {
dependencies {
//Required items 👇
implementation 'io.github.FlyJingFish.AndroidAop:android-aop-core:2.2.5'
implementation 'io.github.FlyJingFish.AndroidAop:android-aop-core:2.2.6'
//Optional 👇This package provides some common annotation aspects
implementation 'io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.5'
implementation 'io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.6'
//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.2.5'
ksp 'io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.2.6'
//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.2.5'
annotationProcessor 'io.github.FlyJingFish.AndroidAop:android-aop-processor:2.2.6'
//⚠️Choose one of the above android-aop-ksp and android-aop-processor
}
```
Expand Down
4 changes: 2 additions & 2 deletions docs/android_aop_extra.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
```groovy
dependencies {
//Optional 👇This package provides some common annotation aspects
implementation "io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.5"
implementation "io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.6"
}
```

Expand All @@ -15,7 +15,7 @@
```kotlin
dependencies {
//Optional 👇This package provides some common annotation aspects
implementation("io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.5")
implementation("io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.6")
}
```

Expand Down
28 changes: 14 additions & 14 deletions docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Depend on the plug-in in `build.gradle` in the **project root directory**
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.2.5" apply true
id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.2.6" apply true
}
```
- Using **legacy plugin application**:
Expand All @@ -37,7 +37,7 @@ Depend on the plug-in in `build.gradle` in the **project root directory**
buildscript {
dependencies {
//Required items 👇
classpath "io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.2.5"
classpath "io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.2.6"
}
}
//👇Add this sentence to automatically apply debugMode to all modules. If not, follow step 5 below.
Expand All @@ -51,7 +51,7 @@ Depend on the plug-in in `build.gradle` in the **project root directory**
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.2.5" apply true
id("io.github.FlyJingFish.AndroidAop.android-aop") version "2.2.6" apply true
}
```
- Using **legacy plugin application**:
Expand All @@ -60,7 +60,7 @@ Depend on the plug-in in `build.gradle` in the **project root directory**
buildscript {
dependencies {
//Required items 👇
classpath("io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.2.5")
classpath("io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.2.6")
}
}
//👇Add this sentence to automatically apply debugMode to all modules. If not, follow step 5 below.
Expand Down Expand Up @@ -123,7 +123,7 @@ Add in `build.gradle` of **app**
//Required items 👇
plugins {
...
id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.2.5"
id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.2.6"
}
```

Expand All @@ -133,7 +133,7 @@ Add in `build.gradle` of **app**
//Required items 👇
plugins {
...
id("io.github.FlyJingFish.AndroidAop.android-aop") version "2.2.5"
id("io.github.FlyJingFish.AndroidAop.android-aop") version "2.2.6"
}
```

Expand Down Expand Up @@ -176,17 +176,17 @@ Add in `build.gradle` of **app**

dependencies {
//👇Required items
implementation "io.github.FlyJingFish.AndroidAop:android-aop-core:2.2.5"
implementation "io.github.FlyJingFish.AndroidAop:android-aop-core:2.2.6"
//👇Optional (1)👈 This package provides some common annotation aspects
implementation "io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.5"
implementation "io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.6"
//👇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)👈, 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.2.5"
ksp "io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.2.6"
//👇Optional (3)👈, 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.2.5"
annotationProcessor "io.github.FlyJingFish.AndroidAop:android-aop-processor:2.2.6"
//⚠️Choose one of the above android-aop-ksp and android-aop-processor
}
```
Expand All @@ -205,17 +205,17 @@ Add in `build.gradle` of **app**

dependencies {
//👇Required items
implementation("io.github.FlyJingFish.AndroidAop:android-aop-core:2.2.5")
implementation("io.github.FlyJingFish.AndroidAop:android-aop-core:2.2.6")
//👇Optional (1)👈 This package provides some common annotation aspects
implementation("io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.5")
implementation("io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.6")

//👇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)👈, 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.2.5")
ksp("io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.2.6")
//👇Optional (3)👈, 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.2.5")
annotationProcessor("io.github.FlyJingFish.AndroidAop:android-aop-processor:2.2.6")
//⚠️Choose one of the above android-aop-ksp and android-aop-processor
}
```
Expand Down
4 changes: 2 additions & 2 deletions docs/zh/android_aop_extra.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
```groovy
dependencies {
//非必须项 👇这个包提供了一些常见的注解切面
implementation "io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.5"
implementation "io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.6"
}
```

Expand All @@ -15,7 +15,7 @@
```kotlin
dependencies {
//非必须项 👇这个包提供了一些常见的注解切面
implementation("io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.5")
implementation("io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.6")
}
```

Expand Down
28 changes: 14 additions & 14 deletions docs/zh/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
plugins {
//必须项 👇 apply 设置为 true 自动为所有module“预”配置debugMode,false则按下边步骤五的方式二
id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.2.5" apply true
id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.2.6" apply true
}
```

Expand All @@ -39,7 +39,7 @@
buildscript {
dependencies {
//必须项 👇
classpath "io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.2.5"
classpath "io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.2.6"
}
}
// 👇加上这句自动为所有module“预”配置debugMode,不加则按下边步骤五的方式二
Expand All @@ -52,7 +52,7 @@
```kotlin
plugins {
//必须项 👇 apply 设置为 true 自动为所有module“预”配置debugMode,false则按下边步骤五的方式二
id("io.github.FlyJingFish.AndroidAop.android-aop") version "2.2.5" apply true
id("io.github.FlyJingFish.AndroidAop.android-aop") version "2.2.6" apply true
}
```

Expand All @@ -61,7 +61,7 @@
buildscript {
dependencies {
//必须项 👇
classpath("io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.2.5")
classpath("io.github.FlyJingFish.AndroidAop:android-aop-plugin:2.2.6")
}
}
// 👇加上这句自动为所有module“预”配置debugMode,不加则按下边步骤五的方式二
Expand Down Expand Up @@ -124,7 +124,7 @@
//必须项 👇
plugins {
...
id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.2.5"//最好放在最后一行
id "io.github.FlyJingFish.AndroidAop.android-aop" version "2.2.6"//最好放在最后一行
}
```

Expand All @@ -134,7 +134,7 @@
//必须项 👇
plugins {
...
id("io.github.FlyJingFish.AndroidAop.android-aop") version "2.2.5"//最好放在最后一行
id("io.github.FlyJingFish.AndroidAop.android-aop") version "2.2.6"//最好放在最后一行
}
```

Expand Down Expand Up @@ -172,18 +172,18 @@

dependencies {
//👇必须项
implementation "io.github.FlyJingFish.AndroidAop:android-aop-core:2.2.5"
implementation "io.github.FlyJingFish.AndroidAop:android-aop-core:2.2.6"
//👇非必须项 (1)👈 这个包提供了一些常见的注解切面
implementation "io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.5"
implementation "io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.6"
//👇必须项 如果您项目内已经有了这项不用加也可以
implementation "androidx.appcompat:appcompat:1.3.0" // 至少在1.3.0及以上
//👇非必须项 (2)👈,如果你想自定义切面需要用到,⚠️支持Java和Kotlin代码写的切面
ksp "io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.2.5"
ksp "io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.2.6"
//👇非必须项 (3)👈,如果你想自定义切面需要用到,⚠️只适用于Java代码写的切面
annotationProcessor "io.github.FlyJingFish.AndroidAop:android-aop-processor:2.2.5"
annotationProcessor "io.github.FlyJingFish.AndroidAop:android-aop-processor:2.2.6"
//⚠️上边的 android-aop-ksp 和 android-aop-processor 二选一
}

Expand All @@ -202,18 +202,18 @@

dependencies {
//👇必须项
implementation("io.github.FlyJingFish.AndroidAop:android-aop-core:2.2.5")
implementation("io.github.FlyJingFish.AndroidAop:android-aop-core:2.2.6")
//👇非必须项 (1)👈 这个包提供了一些常见的注解切面
implementation("io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.5")
implementation("io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.6")
//👇必须项 如果您项目内已经有了这项不用加也可以
implementation("androidx.appcompat:appcompat:1.3.0") // 至少在1.3.0及以上
//👇非必须项 (2)👈,如果你想自定义切面需要用到,⚠️支持Java和Kotlin代码写的切面
ksp("io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.2.5")
ksp("io.github.FlyJingFish.AndroidAop:android-aop-ksp:2.2.6")
//👇非必须项 (3)👈,如果你想自定义切面需要用到,⚠️只适用于Java代码写的切面
annotationProcessor("io.github.FlyJingFish.AndroidAop:android-aop-processor:2.2.5")
annotationProcessor("io.github.FlyJingFish.AndroidAop:android-aop-processor:2.2.6")
//⚠️上边的 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 @@ -41,7 +41,7 @@ DEVELOPER_ID=FlyJingFish
DEVELOPER_NAME=FlyJingFish
DEVELOPER_EMAIL=[email protected]

TestVersion = 2.2.5
TestVersion = 2.2.6
SonatypeTestCode = 1573
# 0 mavenLocal 1 SonatypeCache 2 mavenCentral
TestType = 0
Expand Down
4 changes: 2 additions & 2 deletions version.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#Sun Oct 20 17:24:00 CST 2024
PROJ_VERSION=2.2.5
#Sun Oct 27 19:34:22 CST 2024
PROJ_VERSION=2.2.6

0 comments on commit 9494e9d

Please sign in to comment.