Skip to content

Commit 8bf2c0f

Browse files
committed
update
1 parent 9094fee commit 8bf2c0f

File tree

6 files changed

+13
-11
lines changed

6 files changed

+13
-11
lines changed

GoRouter-Compiler/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ java {
88
}
99

1010
dependencies {
11-
implementation project(path: ':GoRouter-Annotation')
11+
// implementation project(path: ':GoRouter-Annotation')
12+
implementation 'com.github.wyjsonGo.GoRouter:GoRouter-Annotation:1.1.0'
1213

1314
annotationProcessor 'com.google.auto.service:auto-service:1.0.1'
1415
compileOnly 'com.google.auto.service:auto-service-annotations:1.0.1'

GoRouter/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,6 @@ android {
2626
dependencies {
2727
implementation 'androidx.appcompat:appcompat:1.6.1'
2828
implementation 'com.google.code.gson:gson:2.10.1'
29-
api project(path: ':GoRouter-Annotation')
29+
// api project(path: ':GoRouter-Annotation')
30+
api 'com.github.wyjsonGo.GoRouter:GoRouter-Annotation:1.1.0'
3031
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
```groovy
9393
dependencies {
9494
// x.x.x 替换为jitpack最新版本
95-
annotationProcessor 'com.github.wyjsonGo.GoRouter: GoRouter-Compiler:x.x.x'
95+
annotationProcessor 'com.github.wyjsonGo.GoRouter:GoRouter-Compiler:x.x.x'
9696
}
9797
```
9898

module_common/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ android {
3838
dependencies {
3939
api 'androidx.appcompat:appcompat:1.6.1'
4040

41-
api project(path: ':GoRouter')
42-
annotationProcessor project(path: ':GoRouter-Compiler')
43-
// api 'com.github.wyjsonGo.GoRouter:GoRouter:1.1.0'
44-
// annotationProcessor 'com.github.wyjsonGo.GoRouter:GoRouter-Compiler:1.1.0'
41+
// api project(path: ':GoRouter')
42+
// annotationProcessor project(path: ':GoRouter-Compiler')
43+
api 'com.github.wyjsonGo.GoRouter:GoRouter:1.1.0'
44+
annotationProcessor 'com.github.wyjsonGo.GoRouter:GoRouter-Compiler:1.1.0'
4545
}

module_main/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ android {
4040

4141
dependencies {
4242
api project(path: ':module_common')
43-
annotationProcessor project(path: ':GoRouter-Compiler')
44-
// annotationProcessor 'com.github.wyjsonGo.GoRouter:GoRouter-Compiler:1.1.0'
43+
// annotationProcessor project(path: ':GoRouter-Compiler')
44+
annotationProcessor 'com.github.wyjsonGo.GoRouter:GoRouter-Compiler:1.1.0'
4545
}

module_user/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ android {
4040

4141
dependencies {
4242
api project(path: ':module_common')
43-
annotationProcessor project(path: ':GoRouter-Compiler')
44-
// annotationProcessor 'com.github.wyjsonGo.GoRouter:GoRouter-Compiler:1.1.0'
43+
// annotationProcessor project(path: ':GoRouter-Compiler')
44+
annotationProcessor 'com.github.wyjsonGo.GoRouter:GoRouter-Compiler:1.1.0'
4545
}

0 commit comments

Comments
 (0)