Develop android Application using Html,Css and JavaScript

Viewed 93683

I would like to develop Android application using HTML, CSS and JavaScript with Android SDK. I dont want to use another tool like Titanium or PhoneGap.

Is it possible to make application using the HTML, CSS and JavaScript?

Are Android web apps as good as native apps? Can the same functionality be achieved through web apps?

If it is good in comparison of native applications, can any one tell me the proper way to do this or provide me good tutorial?

5 Answers

If you have a pure HTML project (with JS / CSS / Images) you can use the WebIntoApp.com in order to do that online. Also, this website will build (and sign) the APK for you (free / dedicated plans).

https://www.webintoapp.com

(I'm the author)

These days the easiest way to create Android apps based on HTML is to use DroidScript which can be found on Google Play.

The same tool also allows you to build native (non-HTML) apps with pure JavaScript and it's far easier to use than PhoneGap/Cordova because it's aimed at novice coders.

It's based on WebView actually, but all the hard work of handling the JS->Java bridge, permissions, local storage, APK building etc have been done for you by the DroidScript developers.

If you know JavaScript, switch to java or kotlin You don't need css and html. I think Android view structure is easier and more enjoyable than css.

Related