File tree Expand file tree Collapse file tree 8 files changed +11
-14
lines changed
module-communication-plugin/src/main/kotlin/com/flyjingfish/module_communication_plugin Expand file tree Collapse file tree 8 files changed +11
-14
lines changed Original file line number Diff line number Diff line change 5151buildscript {
5252 dependencies {
5353 //必须项 👇
54- classpath 'io.github.flyjingfish:modulecommunication-plugin:1.3.0 '
54+ classpath 'io.github.flyjingfish:modulecommunication-plugin:1.3.1 '
5555 }
5656}
5757```
@@ -163,7 +163,7 @@ b、如果 ```lib-login``` 也没有引入过 ```communication.export``` 插件
163163``` gradle
164164dependencies {
165165 //必须项 👇(可以直接放在公共 module)
166- implementation 'io.github.flyjingfish:modulecommunication-annotation:1.3.0 '
166+ implementation 'io.github.flyjingfish:modulecommunication-annotation:1.3.1 '
167167}
168168```
169169
@@ -279,9 +279,9 @@ communicationConfig{
279279``` gradle
280280dependencies {
281281 //使用拦截器(不是必须的)
282- implementation 'io.github.flyjingfish:modulecommunication-intercept:1.3.0 '
282+ implementation 'io.github.flyjingfish:modulecommunication-intercept:1.3.1 '
283283 //使用路径的方式跳转才需要 (不是必须的)
284- implementation 'io.github.flyjingfish:modulecommunication-route:1.3.0 '
284+ implementation 'io.github.flyjingfish:modulecommunication-route:1.3.1 '
285285}
286286```
287287
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ DEVELOPER_ID=FlyJingFish
3636DEVELOPER_NAME =FlyJingFish
3737DEVELOPER_EMAIL =749617782@qq.com
3838
39- TestVersion = 1.3.0
39+ TestVersion = 1.3.1
4040SonatypeTestCode = 1332
4141TestType = 0
4242
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ package com.flyjingfish.module_communication_plugin
33import com.android.build.api.variant.AndroidComponentsExtension
44import com.android.build.api.variant.Variant
55import com.android.build.gradle.BaseExtension
6- import com.android.build.gradle.LibraryExtension
76import com.android.build.gradle.internal.tasks.factory.dependsOn
87import com.google.devtools.ksp.gradle.KspExtension
98import org.gradle.api.Plugin
@@ -42,8 +41,8 @@ class ApplyExportPlugin: Plugin<Project> {
4241 if (! hasKsp){
4342 project.plugins.apply (" com.google.devtools.ksp" )
4443 }
45- project.dependencies.add(" implementation" ," io.github.FlyJingFish.ModuleCommunication:module-communication -annotation:${LibVersion .version} " )
46- project.dependencies.add(" ksp" ," io.github.FlyJingFish.ModuleCommunication:module-communication -ksp:${LibVersion .version} " )
44+ project.dependencies.add(" implementation" ," io.github.flyjingfish:modulecommunication -annotation:${LibVersion .version} " )
45+ project.dependencies.add(" ksp" ," io.github.flyjingfish:modulecommunication -ksp:${LibVersion .version} " )
4746
4847 applyCommonDependencies(project)
4948
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class CommunicationModulePlugin : Plugin<Project> {
1414 override fun apply (project : Project ) {
1515 variantList.clear()
1616 val androidComponents = project.extensions.getByType(AndroidComponentsExtension ::class .java)
17- project.dependencies.add(" implementation" ," io.github.FlyJingFish.ModuleCommunication:module-communication -annotation:${LibVersion .version} " )
17+ project.dependencies.add(" implementation" ," io.github.flyjingfish:modulecommunication -annotation:${LibVersion .version} " )
1818 val libraryExtension = project.extensions.getByName(" android" ) as LibraryExtension
1919 androidComponents.onVariants { variant ->
2020 variantList.add(variant)
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ import java.io.File
1010import java.io.FileInputStream
1111import java.io.FileOutputStream
1212import java.io.FileWriter
13- import java.io.IOException
1413import java.io.InputStreamReader
1514import java.io.OutputStreamWriter
1615import java.io.PrintWriter
Original file line number Diff line number Diff line change 11package com.flyjingfish.module_communication_plugin
22
33object LibVersion {
4- const val version = " 1.3.0 "
4+ const val version = " 1.3.1 "
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 @@ -4,7 +4,6 @@ import com.android.build.gradle.LibraryExtension
44import org.gradle.api.Project
55import java.io.File
66import java.io.Serializable
7- import java.nio.charset.Charset
87
98data class RuntimeProject (
109 val projectDir : File ,
Original file line number Diff line number Diff line change 1- # Fri Jan 16 16:29:01 CST 2026
2- PROJ_VERSION =1.3.0
1+ # Thu Jan 22 16:41:18 CST 2026
2+ PROJ_VERSION =1.3.1
You can’t perform that action at this time.
0 commit comments