kchat/build.gradle.kts
kaixed d33e6b60c6 refactor: 重构WebsocketService
- 引入ConversationManager类进行管理主页消息列表,以解耦service
- 修复对方发送的同一条消息会出现在聊天界面两次问题
2024-12-13 12:30:29 +08:00

19 lines
608 B
Plaintext

// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
alias(libs.plugins.androidApplication) apply false
alias(libs.plugins.jetbrainsKotlinAndroid) apply false
id("com.google.devtools.ksp") version "1.9.23-1.0.19" apply false
// id ("cn.therouter.agp8") version "1.2.1" apply false
id ("org.jetbrains.kotlin.plugin.serialization") version "1.9.23"
}
buildscript {
repositories {
google()
gradlePluginPortal()
mavenCentral()
}
dependencies {
classpath(libs.objectbox.gradle.plugin)
}
}