CI / Core C++ Tests (push) Has been cancelled
CI / Android Build (push) Has been cancelled
CI / NDK ABI Build (arm64-v8a) (push) Has been cancelled
CI / NDK ABI Build (armeabi-v7a) (push) Has been cancelled
CI / NDK ABI Build (x86_64) (push) Has been cancelled
Complete swipe typing engine with: - swipetype-core: C++17 gesture recognition (DTW, adaptive scoring) - swipetype-android: JNI bridge + Android AAR packaging - sample-app: Functional IME demo with space bar zone detection - 48 unit tests (GTest), CI/CD workflows (GitHub Actions) - Full documentation suite (architecture, API, contributing, security) Co-authored-by: inventory69 <inventory69@users.noreply.github.com> Co-authored-by: Hyphonical <Hyphonical@users.noreply.github.com>
56 lines
654 B
Plaintext
56 lines
654 B
Plaintext
# ============================================================
|
|
# libswipetype — .gitignore
|
|
# ============================================================
|
|
|
|
# ---- Build outputs ----
|
|
build/
|
|
.build/
|
|
out/
|
|
cmake-build-*/
|
|
|
|
# ---- CMake ----
|
|
CMakeCache.txt
|
|
CMakeFiles/
|
|
cmake_install.cmake
|
|
Makefile
|
|
*.cmake
|
|
!CMakeLists.txt
|
|
|
|
# ---- Android / Gradle ----
|
|
.gradle/
|
|
local.properties
|
|
*.iml
|
|
.idea/
|
|
*.apk
|
|
*.aab
|
|
*.ap_
|
|
*.dex
|
|
*.class
|
|
|
|
# ---- NDK / JNI ----
|
|
*.so
|
|
*.o
|
|
*.a
|
|
*.d
|
|
.cxx/
|
|
.externalNativeBuild/
|
|
|
|
# ---- IDE ----
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# ---- OS ----
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# ---- Test artifacts ----
|
|
*.gcov
|
|
*.gcda
|
|
*.gcno
|
|
|
|
# ---- Python ----
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|