event-tracker/android/p4a-recipes/kivy/use_cython.patch
AI_Assistant cd9f9456e9
Initial commit: EventTracker desktop app + Android companion
Desktop: GTK3 + matplotlib app tracking arbitrary events (button ->
timestamp -> CSV), with per-event stats, trend charts, settings
(rename/add events, relocate data file), and a reset-with-backup flow.
Portable desktop launcher via a .desktop.in template + install script,
no machine-specific paths baked in.

Android: minimal Kivy v1 companion reading/writing the same CSV format,
plus buildozer build tooling isolated in a venv and a local p4a recipe
override for kivy (see CLAUDE.md for why).

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-08-22 07:52:54 +00:00

11 lines
432 B
Diff

--- kivy-master/setup.py 2025-02-25 03:08:18.000000000 +0530
+++ kivy-master.mod/setup.py 2025-03-01 13:10:24.227808612 +0530
@@ -249,7 +249,7 @@
# This determines whether Cython specific functionality may be used.
can_use_cython = True
-if platform in ('ios', 'android'):
+if platform in ('ios'):
# NEVER use or declare cython on these platforms
print('Not using cython on %s' % platform)
can_use_cython = False