What are Native Hybrid and Web Applications?

5
Hello everyone, I'm kind of lost in the study of mobile computing. I'm studying these 3 types of architecture for mobile development. Does anyone know the definition of these development architectures?

    
asked by anonymous 29.08.2015 / 23:53

1 answer

7
  

Native or Native

These are applications developed using the device-specific programming language, such as Java for Android, Apple's iOS Objective-C. The advantages of developing a mobile application using its default language are: speed, security, access to device devices such as camera, GPS, etc.

  

Hybrid or Hybrid

The development of hybrid applications brings the best of both worlds (Native and Web) to the development environment. These types of applications are developed using Web technology and then packaged for a specific platform. This allows these applications to behave as native. As well as Web applications, compatibility issues can also occur. Example of this approach is Apache Cordova


  

Web Applications

Web applications (run from device browsers) are multiplatform since all current smartphones have modern browsers and support the latest technologies required for the application to function properly. However, they may face compatibility issues by always having to optimize the code to work around those issues.

    
30.08.2015 / 01:47