5
Hello folks I’m a little lost in the study of mobile computing I’m studying these 3 types of architecture for mobile development someone knows the definition of these development architectures ?
5
Hello folks I’m a little lost in the study of mobile computing I’m studying these 3 types of architecture for mobile development someone knows the definition of these development architectures ?
7
Native or Native
These are apps developed using the device-specific programming language, such as Java for Android, Apple’s Objective-C for iOS. The advantages of developing a mobile application using its standard language are: speed, security, access to device devices such as camera, GPS, etc.
Hybrid or Hybrid
Hybrid application development 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. Just like web applications, compatibility issues can also occur. An example of this approach is the Apache Cordova
Web Applications
Web applications (run from the browsers of the devices), are cross-platform, because all current smartphones have modern browsers and, support the latest technologies necessary for the proper functioning of the application. However, they may face compatibility problems having to optimize the code to get around such problems.
Browser other questions tagged php android web-application mobile
You are not signed in. Login or sign up in order to post.
Excellent thank you very much !
– NOT NULL