Android kivy, where to put application files (ini, images db, etc.),

I created a prototype Android application using kivy. It compiled in buildozer and I downloaded it to my Android device.

But I'm not sure where to place application-specific files, such as ini file, image database, etc.

Any help is much appreciated

+4
source share
1 answer

You can customize them to taste - as long as you tell buildozer to enable their apk (that is, by specifying file types, directories, etc.) and access them with relative paths in your code, they will work same on the device.

Ini , , kivy ( - ). , main.py, , , , main.py.

+2

Source: https://habr.com/ru/post/1585035/


All Articles