Migrating from the Hybrid App to the Native App at a later point in time

I am currently planning to use the Hybrid App (ionic framework) to develop the initial version of our application. The reason is that I plan to launch a startup and am currently not able to provide a separate developer for various platforms (especially for iOS, the developer’s speed is too expensive).

Therefore, I decided to use the Hybrid App using ionic, and our requirements are well suited for a hybrid application, at least for the first few releases. But at a later stage, we plan to switch to native Android and iOS when I earn enough funding. Since later versions of the application may have features such as integration with a payment gateway, chat functions, etc.

So, my question is, is it possible to release the original version of the application using the hybrid, and with the next updates, click the native version? If so, can someone give me a basic idea of ​​how this is achieved so that I can promote it? I searched Google pretty well, but didn't find enough information about the same.

+4
source share
3 answers

Publishing a hybrid app in stores on a particular platform is the same process as publishing your own app.

- (, ), . ( ) (Xcode Android Studio) .

Android ( ) . , .

iOS Bundle / . , .

+6

, . Ionic framework, . , .

+2

You can do this by saving the package name in the Google PlayStore or say the package ID in the App Store. It will replace the old apk or ipa file with the code using the built-in APIs at a later point in time.

+1
source

Source: https://habr.com/ru/post/1625781/


All Articles