Sencha Ext JS 7 for mobile and alternative Packager to Cordova

Viewed 17

We are using Ext JS 7.x MVVM as our code base -to build using the modern toolkit- native iOS and Android apps. We use Cordova to wrap the app into a native container, as per the Sencha guides. It seems that it is the only compatible option out there. We have considered using a different packager, one that has more community support and up-to-date plugins and we have noticed Capacitor. Unfortunately the Cordova to Capacitor migration guide and Ionic docs seem to have official support only for other major JS Frameworks and it is generally mentioned that there is some unofficial support for other JS Frameworks, which we can't find.

Is there a way to migrate the current cordova project to capacitor, or connect our Ext JS app with capacitor directly? Or any other alternative to Cordova. This is the project's structure:

├── <EXT JS workspace>
        └── /<EXT JS mobile app>
            └── /app 
                └── /controller
                └── /model
                └── /store
                └── /view
                ├── Application.js
            └── /resources                           
            └── /cordova
                └── /platforms
                    └── /android
                    └── /ios
                └── /plugins 
                └── /res   
                └── /www
                ├── config.xml
                ├── package.json                
            ├── app.js                          
            ├── app.json
            ├── index.html
0 Answers
Related