iOS Question v4.4 beta image issues when building release

Rory Mapstone

Member
Licensed User
Longtime User
Hi,

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
 
Last edited:

BillMeyer

Well-Known Member
Licensed User
Longtime User
I happens with my gif images as well - app rejected by Apple because gif does not load as splash.
 
Upvote 0
Top