How to uninstall Crosswalk without losing application data?

I want to remove Crosswalk 23 from my Cordova project. My problem is that I am storing data in IndexedDB for offline use and I do not want our clients to resynchronize all data after updating the application. Is there a safe way to transfer data to Android native webview during first launch after upgrading to a newer version?

Best regards Sven

+3


source to share


1 answer


If you want to remove Crosswalk from your existing app but need to keep user data (Local Storage, IndexedDB, WebSQL), you can use cordova-plugin-crosswalk-data-migration to migrate data from Crosswalk back to system webview in the following updating the app where Crosswalk was removed:



cordova plugin add cordova-plugin-crosswalk-data-migration

      

0


source







All Articles