Skip to content

Commit

Permalink
1、修改文档
Browse files Browse the repository at this point in the history
  • Loading branch information
FlyJingFish committed Oct 21, 2024
1 parent 358f314 commit ae8773b
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 12 deletions.
23 changes: 17 additions & 6 deletions docs/android_aop_extra.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@

### Introduce dependent libraries

```groovy
dependencies {
//Optional 👇This package provides some common annotation aspects
implementation 'io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.5'
}
```
=== "Groovy"

```groovy
dependencies {
//Optional 👇This package provides some common annotation aspects
implementation "io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.5"
}
```

=== "Kotlin"

```kotlin
dependencies {
//Optional 👇This package provides some common annotation aspects
implementation("io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.5")
}
```

### This library has some built-in functional annotations for you to use directly.

Expand Down
23 changes: 17 additions & 6 deletions docs/zh/android_aop_extra.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@

### 引入依赖库

```groovy
dependencies {
//非必须项 👇这个包提供了一些常见的注解切面
implementation 'io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.5'
}
```
=== "Groovy"

```groovy
dependencies {
//非必须项 👇这个包提供了一些常见的注解切面
implementation "io.github.FlyJingFish.AndroidAop:android-aop-extra:2.2.5"
}
```

=== "Kotlin"

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

### 本库内置了一些功能注解可供你直接使用

Expand Down

0 comments on commit ae8773b

Please sign in to comment.