I have installed redis and redis-py and my code works perfectly fine on desktop as i have redis-server up and running but any idea how i can port the same code on my mobile and test through Kivy-launcher ? Also what extra i need to do while creating .apk through buildozer ?
from kivy.storage.redisstore import RedisStore
params = dict(host='localhost', port=6379, db=14)
store = RedisStore(params)
I get "ImportError: No module named redis" Even though i tried building it with buildozer still how will i make it up and running to listen to port?
Also do we have any other way to store and read datatype like dict, list easily on mobile through kivy?