0

Can I create Android applications with HTML5, CSS & JavaScript? Such as (News application, books library, 2D & 3D Games and etc) How can I do? And what is the platform used?

1 Answer 1

1

A simple platform to use would be the cordova platform. Simple tutorial found here: https://cordova.apache.org/docs/en/latest/guide/cli/

Install Cordova: npm install -g cordova

Create project: cordova create CordovaApp

Upon creating the application you will notice a 'www' folder. Inside you will find the html, css and js files and folders. Modify those according to your requirements

Add Target Device Platform: cordova platform add ios or cordova platform add android

Build the app: cordova build

Run the app: cordova run android or cordova run ios

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.