How can the code after Ionic is packaged into APK be further encrypted?

the company requires ionic to package APK after decompression, the js code under assets (itself has been confused) is required not to be seen, is there any further way to deal with it?

Mar.10,2021

after ionic is packaged, it should be compressed and confused with UglifyJS. Without sourceMap, the code cannot be restored. No one else can understand it.


  1. try to encrypt the js source code using RSA, and put the public key in APP
  2. tell the company that ionic cannot be implemented
  • There is a problem with the ionic3 pop-up page using modals

    I used Ionic3 to make a mobile hybrid app, and now I want to click the button to pop up a separate page. I use modals to achieve it. created the page using Ionic3 CLI:ionic g page details, where details is the page I want to pop up. then in the place ...

    Mar.02,2021
  • How ionic creates webview

    import { Component } from @angular core ; import { IonicPage, NavController, NavParams } from ionic-angular ; import { WebView } from @ionic-native ionic-webview ngx ; ** * Generated class for the ShopPage page. * * See https: ionicframew...

Menu