Cordova / Phonegap: Live update codebase

后端 未结 8 2065
半阙折子戏
半阙折子戏 2021-02-07 19:17

We are using Cordova along with AngularJS for iOS and Android applications.

One big disadvantage of iOS are the long review times from Apple. In Google\'s Playstore, yo

8条回答
  •  温柔的废话
    2021-02-07 19:49

    I think the best choice would be to not try to do this with Phonegap, but rather identify your dynamic parts and implement these in Javascript.

    Yes, I mean you should indeed use Javascript yourself without Phonegap, for example via JavaScriptBridge: https://github.com/kishikawakatsumi/JavaScriptBridge

    It may require more work initially to redesign your app into a "static" part (your PhoneGap app) and dynamic part (dynamic created views via JavascriptBirdge), and interacte seemlessly between them. But in my opinion, that will be ultimately the best software design.

    However, also make sure you still meet Apples AppStore requirements.

提交回复
热议问题