There is a scenario when building a release app some of the asset images located the files directory do not load. If I debug the app everything works fine. In release mode the app crashes or does not load certain images.
I am not sure how I will be able to show this error for you. Is there any known issues with loading images in the beta? All my images are in png format.
B4X:
Dim bmp as Bitmap
try
'in debug mode this works fine
bmp.Initialize(File.DirAssets, "icon_select.png")
catch
'I believe an exception is thrown in release mode here because this "loading.png" image is shown instead
log(LastException)
bmp.Initialize(File.DirAssets, "loading.png")
end try
It is a bug in the beta version. Any image starting with "icon" is treated differently. It is fixed for the stable version (will be released next week).