tarabyte
tarabyte

Reputation: 19172

Are chrome apps 'hybrid apps'?

This is my first time seeing the term 'hybrid app'. This is all I could find on the topic. I'm trying to understand if that is just a marketing term.

Upvotes: 0

Views: 680

Answers (1)

Scherling
Scherling

Reputation: 1390

You can group the app types into 3 categories: Native, Hybrid and Web.

Hybrid apps is a term used for smartphone apps that are not written in the native language of the phone. Another example is PhoneGap, where you write the entire application as a web application (Using html, javascript, css, etc.) which is then wrapped as an app.

Hybrid apps generally have the advantage that they are cheaper and easier to produce, and is easily ported across operating systems, but lacks performance, and some functionality, due to the overhead, and not being run "directly" on the device.

Native apps are applications written using the native code of the device, and web apps are really just phone friendly websites that are opened through a browser.

Long story, short, no it's not just a marketing term, and to answer the title of your question, yes I would say chrome-app qualifies as a Hybrid app

Upvotes: 2

Related Questions