Skip to content

Commit 82c3eb6

Browse files
committed
升级版本
1 parent 934f516 commit 82c3eb6

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
buildscript {
5252
dependencies {
5353
//必须项 👇
54-
classpath 'io.github.FlyJingFish.ModuleCommunication:module-communication-plugin:1.1.5'
54+
classpath 'io.github.FlyJingFish.ModuleCommunication:module-communication-plugin:1.1.6'
5555
}
5656
}
5757
```
@@ -163,7 +163,7 @@ b、如果 ```lib-login``` 也没有引入过 ```communication.export``` 插件
163163
```gradle
164164
dependencies {
165165
//必须项 👇(可以直接放在公共 module)
166-
implementation 'io.github.FlyJingFish.ModuleCommunication:module-communication-annotation:1.1.5'
166+
implementation 'io.github.FlyJingFish.ModuleCommunication:module-communication-annotation:1.1.6'
167167
}
168168
```
169169

@@ -276,9 +276,9 @@ communicationConfig{
276276
```gradle
277277
dependencies {
278278
//使用拦截器(不是必须的)
279-
implementation 'io.github.FlyJingFish.ModuleCommunication:module-communication-intercept:1.1.5'
279+
implementation 'io.github.FlyJingFish.ModuleCommunication:module-communication-intercept:1.1.6'
280280
//使用路径的方式跳转才需要 (不是必须的)
281-
implementation 'io.github.FlyJingFish.ModuleCommunication:module-communication-route:1.1.5'
281+
implementation 'io.github.FlyJingFish.ModuleCommunication:module-communication-route:1.1.6'
282282
}
283283
```
284284

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ DEVELOPER_ID=FlyJingFish
3535
DEVELOPER_NAME=FlyJingFish
3636
DEVELOPER_EMAIL=[email protected]
3737

38-
TestVersion = 1.1.5
38+
TestVersion = 1.1.6
3939
SonatypeTestCode = 1332
4040
TestType = 0
4141

module-communication-intercept/src/main/java/com/flyjingfish/module_communication_intercept/RouterInterceptManager.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ object RouterInterceptManager {
1717

1818
fun notifyIntercept(proceed : Proceed) {
1919
if (intercepts.isEmpty()) {
20+
proceed.proceed()
2021
return
2122
}
2223
val thisIntercepts = mutableSetOf<RouterIntercept>().apply {

module-communication-plugin/src/main/kotlin/com/flyjingfish/module_communication_plugin/ApplyExportPlugin.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class ApplyExportPlugin: Plugin<Project> {
5050
val communicationConfig = project.extensions.getByType(CommunicationConfig::class.java)
5151
var moduleName = communicationConfig.exportModuleName
5252
if (moduleName.isEmpty()){
53-
moduleName = project.properties[COMMON_MODULE_NAME].toString()
53+
moduleName = (project.properties[COMMON_MODULE_NAME]?:"").toString()
5454
}
5555
if (moduleName.isNotEmpty()){
5656
variantList.add(variant)
@@ -89,7 +89,7 @@ class ApplyExportPlugin: Plugin<Project> {
8989
it.copyType = ExportTask.CopyType.ALL
9090
}.dependsOn("ksp${variantNameCapitalized}Kotlin")
9191
}else{
92-
project.logger.error("没有设置 Copy 的目标 moduleName")
92+
project.logger.error("ModuleCommunication提示:没有设置<负责通信>的目标 moduleName")
9393
}
9494
}
9595
project.afterEvaluate {

module-communication-plugin/src/main/kotlin/com/flyjingfish/module_communication_plugin/LibVersion.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.flyjingfish.module_communication_plugin
22

33
object LibVersion {
4-
const val version = "1.1.5"
4+
const val version = "1.1.6"
55
const val buildDir = "communication"
66
const val pathName = "java"
77
const val resName = "res"

version.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#Sat May 18 09:31:23 CST 2024
2-
PROJ_VERSION=1.1.5
1+
#Mon May 20 15:58:15 CST 2024
2+
PROJ_VERSION=1.1.6

0 commit comments

Comments
 (0)