Hybrid App Introduction

There are three types of mobile devices:

1. Native app : a mobile application developed by andriod(java) / ios(object-c), with good performance, and it is very good for calling hardware functions such as mobile phone camera and calendar----native app

2. web App : HTML5+js+css cannot call camera, calendar and other hardware functions ---web App

3. Hybrid App : the web page is nested in the native container webView, the performance is lower than that of the native one, and it can call the native related functions such as the native camera and calendar

Several Hybrid App frameworks: Cordova, Phonegap (Cordova commercial version), Ionic, // flutter , react-native(RN)

Development preparation:

1. IDE editor: vscode or webstorm

2. Nodejs LTS version

3. An ios mobile phone or an Android mobile phone

4. Xcode needs to be downloaded on mac, and Andriod Studio needs to be downloaded on windows

5. Publishing: Developer identity is required (AppStore; Android app stores are different)

How the Hybrid App works:

How Hybrid Apps Work

 

Guess you like

Origin blog.csdn.net/wenmin1987/article/details/129622402