Skip to content

Commit 3edd722

Browse files
committed
publish v2.1.1
修复Gradle生成文档任务存在多个变体失败bug
1 parent c8893ce commit 3edd722

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
plugins {
22
id 'com.android.application'
3-
id 'com.wyjson.gorouter'
4-
}
5-
GoRouter {
6-
// 允许执行自动注册任务的集合,最好不要写debug,以节省开发阶段build时间。
7-
buildTypes "release"
3+
// id 'com.wyjson.gorouter'
84
}
5+
//GoRouter {
6+
// // 允许执行自动注册任务的集合,最好不要写debug,以节省开发阶段build时间。
7+
// buildTypes "release"
8+
//}
99
android {
1010
namespace 'com.wyjson.go_router'
1111
compileSdk 33

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
33
dependencies {
4-
classpath "com.github.wyjsonGo.GoRouter:GoRouter-Gradle-Plugin:${VERSION}"
4+
// classpath "com.github.wyjsonGo.GoRouter:GoRouter-Gradle-Plugin:${VERSION}"
55
}
66
}
77

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ android.nonTransitiveRClass=true
2525
# org.gradle.jvmargs=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005
2626

2727
GROUP_ID=com.github.wyjsonGo.GoRouter
28-
VERSION=2.1.0
28+
VERSION=2.1.1

module_common/build.gradle

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

39-
// api project(path: ':GoRouter-Api')
40-
// annotationProcessor project(path: ':GoRouter-Compiler')
39+
api project(path: ':GoRouter-Api')
40+
annotationProcessor project(path: ':GoRouter-Compiler')
4141

42-
api "com.github.wyjsonGo.GoRouter:GoRouter-Api:${VERSION}"
43-
annotationProcessor "com.github.wyjsonGo.GoRouter:GoRouter-Compiler:${VERSION}"
42+
// api "com.github.wyjsonGo.GoRouter:GoRouter-Api:${VERSION}"
43+
// annotationProcessor "com.github.wyjsonGo.GoRouter:GoRouter-Compiler:${VERSION}"
4444
}

module_main/build.gradle

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

3939
dependencies {
4040
api project(path: ':module_common')
41-
// annotationProcessor project(path: ':GoRouter-Compiler')
42-
annotationProcessor "com.github.wyjsonGo.GoRouter:GoRouter-Compiler:${VERSION}"
41+
annotationProcessor project(path: ':GoRouter-Compiler')
42+
// annotationProcessor "com.github.wyjsonGo.GoRouter:GoRouter-Compiler:${VERSION}"
4343
}

module_user/build.gradle

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

3939
dependencies {
4040
api project(path: ':module_common')
41-
// annotationProcessor project(path: ':GoRouter-Compiler')
42-
annotationProcessor "com.github.wyjsonGo.GoRouter:GoRouter-Compiler:${VERSION}"
41+
annotationProcessor project(path: ':GoRouter-Compiler')
42+
// annotationProcessor "com.github.wyjsonGo.GoRouter:GoRouter-Compiler:${VERSION}"
4343
}

0 commit comments

Comments
 (0)