- Learning Ionic
- Arvind Ravulavaru
- 204字
- 2021-07-16 13:40:54
Mobile Hybrid Architecture
Before we start working with Ionic, we need to understand the bigger picture of the Mobile Hybrid platform.
The concept is pretty simple. Almost every mobile operating system (also called Platform when working with Cordova) has an API to develop apps. This API consists of a component named Web View. A Web View is typically a browser that runs inside the scope of a mobile application. This browser runs the HTML, CSS, and JS codes. This means that you can build a web page using the preceding technologies and then execute it inside your app.
You can use the same knowledge of web development to build native-hybrid mobile apps (here, native refers to installing the platform-specific format file on the device after it has been packaged along with the assets), for instance:
- Android uses Android Application Package (
.apk
) - iOS uses iPhone Application Archive (
.ipa
) - Windows Phone uses Application Package (
.xap
)
The package/installer consists of a piece of native code that initializes the web page and a bunch of assets needed to show the web page content.
This setup of showing a web page inside the mobile app container that consists of your application business logic is called as a Hybrid App.
- Facebook Application Development with Graph API Cookbook
- ASP.NET Core 5.0開發入門與實戰
- 信息安全技術
- QTP自動化測試進階
- 零基礎學Python網絡爬蟲案例實戰全流程詳解(高級進階篇)
- The Complete Coding Interview Guide in Java
- Teaching with Google Classroom
- Java網絡編程核心技術詳解(視頻微課版)
- Extreme C
- Scala for Machine Learning(Second Edition)
- Android系統下Java編程詳解
- 零基礎看圖學ScratchJr:少兒趣味編程(全彩大字版)
- Java EE項目應用開發
- C/C++程序設計教程
- Learning Puppet