Would it be possible to do a project in html, css, js, and run in a native like android? [duplicate]

-1

I would like to know if it is possible to create a project in html, css and js, and run in a native. If possible, which platform to use? (Simple project obser- vation, simple costs :)).

    
asked by anonymous 14.06.2017 / 00:20

2 answers

2

Progressive Web Apps . Features:

  • Reliability : When launched from the user's home screen, service workers allow a Progressive Web application (or PWA) to load instantaneously regardless of network state. / li>
  • Speed : Web application features are stored locally after the first load. PWAs load instantaneously.
  • Behavior : PWAs are installable, and can be displayed as home screen icons without the need for installation from the AppStore. They are also allowed to open in full screen and send push notifications.
14.06.2017 / 02:19
2

Yes, there are what we call hybrid applications. They can be created using frameworks such as React Native , the Ionic or the NativeScript . Some as they have said do not do much more than create a WebView and put your code over using the advantages of Apache Cordova and PhoneGap to communicate with the phone's APIs.

Others, however, have an extensive ability to "convert" front-end code into native code. Making a kind of de-for that greatly improves the performance and usability of the application, but on the other hand they have far fewer features than their "not-so-native" competitors.

    
14.06.2017 / 01:49