DEV Community

Discussion on: Publish my first App, the worst Nightmare I never had.

Collapse
 
karandpr profile image
Karan Gandhi • Edited

Welcome to cordova hell. Where a change in webview version breaks your app in inappropriate ways.
Where your app doesn't work on some smartphones and the only way to fix it is to ask user to factory reset his phone.

Also it's ironic that Google Play used to publish apps under 4 hours and App Store used to take weeks.
Today I can publish on App Store under a day and Play Store takes 7 days+.

P.S. Global ClearTextTraffic is not recommended. Android and iOS both block http natively.
If you are using Ionic , check the resources/android/xml/network_security_config.xml file.
Add your domain

<domain includeSubdomains="true">yunohttps.com</domain>

Else create your own network security config as shown here

Cheers !

Collapse
 
alexgomez88 profile image
Alejandro Augusto Gomez Rodriguez

Thanks for the trick, I will checkout in the next release.