File tree Expand file tree Collapse file tree 6 files changed +13
-12
lines changed
module-communication-plugin/src/main/kotlin/com/flyjingfish/module_communication_plugin Expand file tree Collapse file tree 6 files changed +13
-12
lines changed Original file line number Diff line number Diff line change 5151buildscript {
5252 dependencies {
5353 //必须项 👇
54- classpath 'io.github.FlyJingFish.ModuleCommunication:module-communication-plugin:1.2.5 '
54+ classpath 'io.github.FlyJingFish.ModuleCommunication:module-communication-plugin:1.2.6 '
5555 }
5656}
5757```
@@ -163,7 +163,7 @@ b、如果 ```lib-login``` 也没有引入过 ```communication.export``` 插件
163163``` gradle
164164dependencies {
165165 //必须项 👇(可以直接放在公共 module)
166- implementation 'io.github.FlyJingFish.ModuleCommunication:module-communication-annotation:1.2.5 '
166+ implementation 'io.github.FlyJingFish.ModuleCommunication:module-communication-annotation:1.2.6 '
167167}
168168```
169169
@@ -279,9 +279,9 @@ communicationConfig{
279279``` gradle
280280dependencies {
281281 //使用拦截器(不是必须的)
282- implementation 'io.github.FlyJingFish.ModuleCommunication:module-communication-intercept:1.2.5 '
282+ implementation 'io.github.FlyJingFish.ModuleCommunication:module-communication-intercept:1.2.6 '
283283 //使用路径的方式跳转才需要 (不是必须的)
284- implementation 'io.github.FlyJingFish.ModuleCommunication:module-communication-route:1.2.5 '
284+ implementation 'io.github.FlyJingFish.ModuleCommunication:module-communication-route:1.2.6 '
285285}
286286```
287287
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ DEVELOPER_ID=FlyJingFish
3535DEVELOPER_NAME =FlyJingFish
3636DEVELOPER_EMAIL =749617782@qq.com
3737
38- TestVersion = 1.2.5
38+ TestVersion = 1.2.6
3939SonatypeTestCode = 1332
4040TestType = 0
4141
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ android {
1111 sourceCompatibility JavaVersion . VERSION_11
1212 targetCompatibility JavaVersion . VERSION_11
1313 }
14- kotlinOptions {
15- jvmTarget = ' 11 '
14+ kotlin {
15+ jvmToolchain( 11 )
1616 }
1717}
1818dependencies {
Original file line number Diff line number Diff line change 11java {
2- sourceCompatibility = JavaVersion . VERSION_11
3- targetCompatibility = JavaVersion . VERSION_11
2+ toolchain {
3+ languageVersion. set(JavaLanguageVersion . of(JavaVersion . VERSION_11 . toString()))
4+ }
45}
Original file line number Diff line number Diff line change 11package com.flyjingfish.module_communication_plugin
22
33object LibVersion {
4- const val version = " 1.2.5 "
4+ const val version = " 1.2.6 "
55 const val buildDir = " communication"
66 const val pathName = " java"
77 const val resName = " res"
Original file line number Diff line number Diff line change 1- # Wed Jun 12 18:23:22 CST 2024
2- PROJ_VERSION =1.2.5
1+ # Thu Jun 20 16:04:59 CST 2024
2+ PROJ_VERSION =1.2.6
You can’t perform that action at this time.
0 commit comments