Navigation Links

Responsive Topnav Example

Resize the browser window to see how it works.

Thursday, March 10, 2016

Setup Android-HTML5 Project

Many of us really need to develop an app on faster way. Most of us knows basic understanding of HTML5 language, but they didn't aware of how to start make app by using HTML5. Below steps will guide you to setup the HTML5 base android project in Android studio.

Pre-requested software
  • Node.js
  • Android SDK latest version
  • Android Studio
  • Java 7


steps
  1. Download and install latest version of Node.js from here

  2. Run the following command in window command prompt to download the cordova in order to setup android project structure on the windows command prompt

     npm install -g cordova
  3. Create the app by following command

     cordova create hello com.thanu.hello HelloWorld
    create - Project folder name
    com.thanu.hello - Project package name
    HellowWorld - Project Name

  4. Add the android platform by using following command

     cordova platform add android
  5. Import Android Project by using below snap








References

cordova documentation
Project import documentation

No comments:

Post a Comment