Broken images on live android app

I’m displaying images in my app hosted with cloudfront. All is fine when testing, Android emulator, device and on the web server but after google approved my app and I download it from the play store all the images are broken? The links are all https, maybe that’s the problem.

Anyone run into this problem?

Thanks.

Keith

Assuming the certs on the server are valid, might it be a CORS issue?

1 Like

Thanks for replying. It could possibly be an issue, I’m not sure what to check or what to add. I have a angular web app and an iPhone app using the same API with no issues.

I have the cordova whitelist plugin and these are in my config.xml

<content src="index.html"/>
<access origin="*"/>
<allow-intent href="http://*/*"/>
<allow-intent href="https://*/*"/>
<allow-intent href="tel:*"/>
<allow-intent href="sms:*"/>
<allow-intent href="mailto:*"/>
<allow-intent href="geo:*"/>
<platform name="android">
<allow-intent href="market:*"/>
</platform>

Not sure why but it just started working.

Technician syndrome. Whenever you call somebody to fix appliances, they mysteriously start working.

1 Like

Haha, so true. Thanks again for being wiling to help.