File tree Expand file tree Collapse file tree 5 files changed +13
-13
lines changed
agp8-project/plugin/src/main/groovy/com/therouter/plugin
apt/src/main/java/com/therouter/apt
plugin/src/main/groovy/com/therouter/plugin Expand file tree Collapse file tree 5 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -28,18 +28,18 @@ TheRouter core functions have four functionalities:
28
28
29
29
| module| apt | router | plugin |
30
30
| ---| ----------------------------------------------------------------------------------------------------------| -------------------------------------------------------------------------------------------------------------------| -------------------------------------------------------------------------------------------------------------------|
31
- | version| [ ![ apt] ( https://img.shields.io/badge/apt-1.2.0 -green )] ( https://repo1.maven.org/maven2/cn/therouter/apt/ ) | [ ![ router] ( https://img.shields.io/badge/router-1.2.0 -green )] ( https://repo1.maven.org/maven2/cn/therouter/router/ ) | [ ![ plugin] ( https://img.shields.io/badge/plugin-1.2.0 -green )] ( https://repo1.maven.org/maven2/cn/therouter/plugin/ ) |
31
+ | version| [ ![ apt] ( https://img.shields.io/badge/apt-1.2.1 -green )] ( https://repo1.maven.org/maven2/cn/therouter/apt/ ) | [ ![ router] ( https://img.shields.io/badge/router-1.2.1 -green )] ( https://repo1.maven.org/maven2/cn/therouter/router/ ) | [ ![ plugin] ( https://img.shields.io/badge/plugin-1.2.1 -green )] ( https://repo1.maven.org/maven2/cn/therouter/plugin/ ) |
32
32
33
33
```
34
34
// root build.gradle
35
- classpath 'cn.therouter:plugin:1.2.0 '
35
+ classpath 'cn.therouter:plugin:1.2.1 '
36
36
37
37
// app module
38
38
apply plugin: 'therouter'
39
39
40
40
// dependencies
41
- kapt "cn.therouter:apt:1.2.0 "
42
- implementation "cn.therouter:router:1.2.0 "
41
+ kapt "cn.therouter:apt:1.2.1 "
42
+ implementation "cn.therouter:router:1.2.1 "
43
43
```
44
44
45
45
#### B2. initialization library
Original file line number Diff line number Diff line change @@ -26,20 +26,20 @@ TheRouter 具备四大能力:
26
26
27
27
#### 2.1 Gradle 引入
28
28
29
- | module| apt | router | plugin |
30
- | ---| ---------------------------------------------------------------------------------------------------------| -----------------------------------------------------------------------------------------------------------------| -----------------------------------------------------------------------------------------------------------------|
31
- | version| [ ![ apt] ( https://img.shields.io/badge/apt-1.2.0 -green )] ( https://repo1.maven.org/maven2/cn/therouter/apt ) | [ ![ router] ( https://img.shields.io/badge/router-1.2.0 -green )] ( https://repo1.maven.org/maven2/cn/therouter/router ) | [ ![ plugin] ( https://img.shields.io/badge/plugin-1.2.0 -green )] ( https://repo1.maven.org/maven2/cn/therouter/plugin ) |
29
+ | module| apt | router | plugin |
30
+ | ---| ---------------------------------------------------------------------------------------------------------| ------------------------------------------------------------------------------------------------------------------ | - -----------------------------------------------------------------------------------------------------------------|
31
+ | version| [ ![ apt] ( https://img.shields.io/badge/apt-1.2.1 -green )] ( https://repo1.maven.org/maven2/cn/therouter/apt ) | [ ![ router] ( https://img.shields.io/badge/router-1.2.1 -green )] ( https://repo1.maven.org/maven2/cn/therouter/router ) | [ ![ plugin] ( https://img.shields.io/badge/plugin-1.2.1 -green )] ( https://repo1.maven.org/maven2/cn/therouter/plugin ) |
32
32
33
33
```
34
34
// 项目根目录 build.gradle 引入
35
- classpath 'cn.therouter:plugin:1.2.0 '
35
+ classpath 'cn.therouter:plugin:1.2.1 '
36
36
37
37
// app module 中引入
38
38
apply plugin: 'therouter'
39
39
40
40
// 依赖,所有使用了注解的模块都要添加
41
- kapt "cn.therouter:apt:1.2.0 "
42
- implementation "cn.therouter:router:1.2.0 "
41
+ kapt "cn.therouter:apt:1.2.1 "
42
+ implementation "cn.therouter:router:1.2.1 "
43
43
```
44
44
45
45
#### 2.2 初始化
Original file line number Diff line number Diff line change 1
1
package com .therouter .plugin ;
2
2
3
3
public final class BuildConfig {
4
- public static final String VERSION = "1.2.0 " ;
4
+ public static final String VERSION = "1.2.1 " ;
5
5
public static final String NAME = "plugin-agp8" ;
6
6
7
7
private BuildConfig () {
Original file line number Diff line number Diff line change 1
1
package com .therouter .apt ;
2
2
3
3
public final class BuildConfig {
4
- public static final String VERSION = "1.2.0 " ;
4
+ public static final String VERSION = "1.2.1 " ;
5
5
public static final String NAME = "apt" ;
6
6
7
7
public static final boolean DEBUG = false ;
Original file line number Diff line number Diff line change 1
1
package com .therouter .plugin ;
2
2
3
3
public final class BuildConfig {
4
- public static final String VERSION = "1.2.0 " ;
4
+ public static final String VERSION = "1.2.1 " ;
5
5
public static final String NAME = "plugin" ;
6
6
7
7
private BuildConfig () {
You can’t perform that action at this time.
0 commit comments