Skip to content

Commit

Permalink
Merge branch 'master' into dev_update
Browse files Browse the repository at this point in the history
  • Loading branch information
FlyJingFish authored Apr 3, 2024
2 parents 1391ee8 + 9bd3c41 commit 392611b
Showing 1 changed file with 22 additions and 19 deletions.
41 changes: 22 additions & 19 deletions README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,50 +68,53 @@ plugins {

1. Depend on the plug-in in ```build.gradle``` in the **project root directory**

old version
new version

```gradle
plugins {
//必须项 👇
id "io.github.FlyJingFish.AndroidAop.android-aop" version "1.5.1" apply false
}
```

<details>
<summary><strong>or old version</strong></summary>
```gradle
buildscript {
dependencies {
//Required items 👇
classpath 'io.github.FlyJingFish.AndroidAop:android-aop-plugin:1.5.2'
}
}
```
<details>
<summary>or new version</summary>
```gradle
plugins {
//必须项 👇
id "io.github.FlyJingFish.AndroidAop.android-aop" version "1.5.2" apply false
}
```
</details>
2. Add in ```build.gradle``` of **app**
old version

new version
```gradle
//Required items 👇
apply plugin: 'android.aop' //It's best to put it on the last line
plugins {
...
id 'android.aop'//It is best to put it on the last line
}
```

<details>
<summary>or new version</summary>

<details>
<summary><strong>or old version</strong></summary>
```gradle
//Required items 👇
plugins {
...
id 'android.aop'//It is best to put it on the last line
}
apply plugin: 'android.aop' //It's best to put it on the last line
```


</details>


Expand Down

0 comments on commit 392611b

Please sign in to comment.