Director update to 1.3 caused error on device

As soon as I migrated to director 1.3, it gives me this error now on device. Works fine on simulator but on android device the screen does not loads and says
“Director ERROR: Failed to load module ‘start’ - Please check if the file exists and it is correct.”

The file start.lua certainly exists in the same folder. Things work all fine in simulator but don’t work at all in Android as far as Director is concerned.

Please help, its my third day stuck with this Director device issue. The sample code sent along with Director 3 works all fine through on device too.

Regards,

Sheraz Jamshed
[import]uid: 69481 topic_id: 13998 reply_id: 313998[/import]

I am having this problem too and its driving me crazy. There is no useful information given by director as to why it is not working. And the solutions I found for one of my scenes is changing an newImageRect to a newImage which makes no sense since the scenes work on my Android with on 1.2 with newImage and no errors thrown by Corona.

[import]uid: 54716 topic_id: 13998 reply_id: 51591[/import]

i’m having the same problem too… i’m using director 1.4 anyone help me out… [import]uid: 132856 topic_id: 13998 reply_id: 96553[/import]

You may need to tether your device and use the adb tool to view the console log on the device and get the rest of the error message. It seems that when Director throws an error, you get a popup and AFTER you dismiss the popup the rest of the error is written to the console. [import]uid: 19626 topic_id: 13998 reply_id: 96581[/import]

One thing to check is the file names. The simulator is not case sensitive and the Android devices are when it comes to file names. Make sure you use the same case for the file names throughout your program.

Example file name ‘Splash.lua’

director:changeScene(“splash”) – Will not work on Android

director:changeScene(“Splash”) – Will work on Android
Hope this helps,
Jeff
[import]uid: 14119 topic_id: 13998 reply_id: 96585[/import]

@jeff thanks dude i know that but i got the problem…

problem was image file name :

SplashScreen.PNG was orignal name and i was using SplashScreen.png
its mean extension also case sensitive…!!! [import]uid: 132856 topic_id: 13998 reply_id: 96781[/import]