Try to create a minimal executable example that represents your issue.
Here are some thoughts:
Kivy creates a log in a .kivy/logs directory. See if there is any useful information in the log.
I assume you are adding widgets to the widget tree by calling add_widget(), Are you removing the wigdgets from the widget tree prior to adding more widgets – or are you just adding widgets? Failure to remove widgets and just adding widgets could result in an out of memory or stack overflow.
If possible, I would recommend you reduce the update frequency. You are currently updating the UI, 10 times per second. Drop this to once a second or even once every 3 or 5 seconds or more.
As a debugging suggestion, walk the widget tree and print out the widgets after each update (use walk()). Make sure the widget tree is as you expect – and not growing.
--
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/a68cd23a-3429-4841-88f8-da791b96f5b5n%40googlegroups.com.