Hey guys I'm using Microsoft's CodePush with an Ionic app ( https://ionicframework.com/docs/native/code-push/ ).
It works perfectly for our iOS users and most of our Android users, however we are getting a large amount of reports from Android users that it's not working. They're saying that it's freezing on the checking for updates screen.
I can't seem to find any consistency among the users that are reporting this. I've been asking about their version of Android, which phone they have and how much available storage they have. All of the Android test devices I have work fine with it so I'm not really sure where to go from here.
I'm just wondering if anyone else has any experience in this and might know where to point me to look into this deeper. Thanks!
I finally got it working by doing the following:
1) Follow @BRass's post and ensure that webview is on version 1.2.1
ionic cordova platform rm android
ionic cordova plugin rm cordova-plugin-ionic-webview
ionic cordova plugin add cordova-plugin-ionic-webview@1.2.1
ionic cordova platform add android
2) Go to your index.html and add
<script src="build/polyfills.js"></script>
directly before
<script src="cordova.js"></script>
And VOILA it works!