Files
Unexpected-Keyboard/settings.gradle.kts
harley 149373226a
Check generated files / Layout list (push) Has been cancelled
Check generated files / Layout warnings (push) Has been cancelled
Check generated files / Compose key data (push) Has been cancelled
Make Apk CI / Build-Apk (push) Has been cancelled
Integrate libswipetype as submodule (swipe typing engine)
- Added vendor/libswipetype as git submodule
- Included swipetype-android as Gradle module in settings.gradle.kts
- Added implementation project dependency in build.gradle.kts
- Updated swipetype-android build.gradle to use NDK 27 / SDK 36
- Builds and links successfully via CMake + NDK

Next: wire gesture touch detection, trail rendering, and suggestion integration
2026-07-07 03:01:07 -04:00

21 lines
413 B
Kotlin

pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "Unexpected-Keyboard"
include(":swipetype-android")
project(":swipetype-android").projectDir = File("vendor/libswipetype/swipetype-android")