- 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
21 lines
413 B
Kotlin
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")
|