Skip to content

Commit ee6b02f

Browse files
authored
Merge pull request #10 from wyjsonGo/develop
1.build()方法路径为空不抛异常 2.优化inject()方法 3.优化addCardMeta方法
2 parents fd0db47 + 90c8ce0 commit ee6b02f

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

GoRouter-Compiler/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencies {
1818

1919
implementation 'com.google.code.gson:gson:2.10.1'
2020

21-
implementation project(path: ':GoRouter-Annotation')
22-
// implementation 'com.github.wyjsonGo.GoRouter:GoRouter-Annotation:1.1.2'
21+
// implementation project(path: ':GoRouter-Annotation')
22+
implementation 'com.github.wyjsonGo.GoRouter:GoRouter-Annotation:1.1.2'
2323

2424
}

GoRouter/build.gradle

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

2626
dependencies {
2727
implementation 'androidx.appcompat:appcompat:1.6.1'
28-
api project(path: ':GoRouter-Annotation')
29-
// api 'com.github.wyjsonGo.GoRouter:GoRouter-Annotation:1.1.2'
28+
// api project(path: ':GoRouter-Annotation')
29+
api 'com.github.wyjsonGo.GoRouter:GoRouter-Annotation:1.1.2'
3030
}

module_common/build.gradle

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

41-
api project(path: ':GoRouter')
42-
annotationProcessor project(path: ':GoRouter-Compiler')
41+
// api project(path: ':GoRouter')
42+
// annotationProcessor project(path: ':GoRouter-Compiler')
4343

44-
// api 'com.github.wyjsonGo.GoRouter:GoRouter:1.1.2'
45-
// annotationProcessor 'com.github.wyjsonGo.GoRouter:GoRouter-Compiler:1.1.2'
44+
api 'com.github.wyjsonGo.GoRouter:GoRouter:1.1.2'
45+
annotationProcessor 'com.github.wyjsonGo.GoRouter:GoRouter-Compiler:1.1.2'
4646
}

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.2'
43+
// annotationProcessor project(path: ':GoRouter-Compiler')
44+
annotationProcessor 'com.github.wyjsonGo.GoRouter:GoRouter-Compiler:1.1.2'
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.2'
43+
// annotationProcessor project(path: ':GoRouter-Compiler')
44+
annotationProcessor 'com.github.wyjsonGo.GoRouter:GoRouter-Compiler:1.1.2'
4545
}

0 commit comments

Comments
 (0)