Files
m-stecmd/ble-protocol/build.gradle.kts
阿猫 e96e92d7ab *
2026-09-03 12:38:16 +08:00

14 lines
307 B
Kotlin
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// ble-protocol纯 Kotlin JVM 模块,零第三方依赖(测试框架除外)
// 职责IE-1000 / VM208 蓝牙帧的解析与编码,脱离 Android 可独立单测
plugins {
alias(libs.plugins.kotlin.jvm)
}
kotlin {
jvmToolchain(17)
}
dependencies {
testImplementation(libs.junit)
}