플레이스토어 출시 위해 클라이언트를 네이티브 Android(Kotlin+Compose)로 전환. - android/engine: 순수 Kotlin 코어 엔진 이식 (보드·SRS+180 킥·7-bag·홀드·고스트· 락딜레이·T-spin/mini 판정·콤보/B2B). 웹 engine.js 와 동일 알고리즘. - android/engine/src/test: JUnit 24개 테스트 전부 통과 (Gradle 8.11.1 + JDK21). - Gradle 래퍼 포함. :app(Compose UI) 모듈은 다음 단계. - 서버(Cloudflare) 계획 불변. 웹 프로토타입은 동작 레퍼런스로 유지.
13 lines
182 B
Kotlin
13 lines
182 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation("junit:junit:4.13.2")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnit()
|
|
testLogging { events("passed", "failed", "skipped") }
|
|
}
|