I have an icon 512x512 named crash.png
I'm trying to replace the default kivy icon on my android device.
I've modified buildozer.spec
# (str) Icon of the application
#icon.filename = %(source.dir)s/data/icon.png
#icon.filename = %(source.dir)s/crash.png
icon.filename = %(source.dir)s/resources/crash.png
I tried each of the commented-out lines and each time I get
FileNotFoundError: [Errno 2] No such file or directory: '/home/danm9/Crash/resources/crash.png'
I have a copy of crash.png in each directory (Crash, resources, data)
Any idea what I'm doing wrong???