Missing images on android

Hey ,  I got a problem.

Im developing an game and I have been trying it on corona sdk simulator and it worked perfectly , but then i build it and installed on android device.

On android device there is missing objects.

Here is video what is happening:

https://www.youtube.com/watch?v=a5w6i8sCBKw&feature=youtu.be

Ty ,

Ars.

My first thought would be to check the file names and make sure they match up. I’m not sure about Android, but iOS is case sensitive so image.png is different from Image.png. 

I have checked it  and it looks its writed correctly.  :/

One more thing: Im using storyboard  plugin, not new composer plugin.

Use Android monitor (visually see log output) to see what’s going wrong: https://developer.android.com/studio/profile/android-monitor.html

As the above poster, I would say either incorrect filenames, or possibly images that are too large to be loaded.

Using the above tool will show you any errors or warnings coming from Corona so you can debug this.

Well, the problem was in sub directories.

I had path like display.newimage("/bitmap/…png") and then i changed it to root folder -> ("…png"); and everything works fine.

I use paths like “images/logo.png” and don’t have any problems.  Not sure if the leading “/” is causing you issues.

My first thought would be to check the file names and make sure they match up. I’m not sure about Android, but iOS is case sensitive so image.png is different from Image.png. 

I have checked it  and it looks its writed correctly.  :/

One more thing: Im using storyboard  plugin, not new composer plugin.

Use Android monitor (visually see log output) to see what’s going wrong: https://developer.android.com/studio/profile/android-monitor.html

As the above poster, I would say either incorrect filenames, or possibly images that are too large to be loaded.

Using the above tool will show you any errors or warnings coming from Corona so you can debug this.

Well, the problem was in sub directories.

I had path like display.newimage("/bitmap/…png") and then i changed it to root folder -> ("…png"); and everything works fine.

I use paths like “images/logo.png” and don’t have any problems.  Not sure if the leading “/” is causing you issues.