Does anyone know why my android app doesn’t work on my phone ???
when I run it on my phone it only shows a black screen before force closing.
HERE IS THE CODE:
– main.lua
Does anyone know why my android app doesn’t work on my phone ???
when I run it on my phone it only shows a black screen before force closing.
HERE IS THE CODE:
– main.lua
Nine out of ten times this is due to filenames and capitalization. Check the debug guide here, and try changing all filenames (images, folders) to lowercase (ex. “Image0.png” to “image0.png”).
Devices are case sensitive where the simulator is not. Make sure your filename’s match exactly what’s on the file system. You can also look at the device’s console log for the error message. See: http://coronalabs.com/blog/2013/07/09/tutorial-basic-debugging/
Rob
Nine out of ten times this is due to filenames and capitalization. Check the debug guide here, and try changing all filenames (images, folders) to lowercase (ex. “Image0.png” to “image0.png”).
Devices are case sensitive where the simulator is not. Make sure your filename’s match exactly what’s on the file system. You can also look at the device’s console log for the error message. See: http://coronalabs.com/blog/2013/07/09/tutorial-basic-debugging/
Rob