Posts

Showing posts from May, 2016

Mobile application using Ionic

This is my first mobile (hybrid) application created using Ionic framework. I am using Mac OS along with the Android Studio/Android SDK to compile and simulate the application. Here are the steps need to follow from the sketch. First, need to install Ionic and Cordova on your Mac/PC, npm install -g cordova ionic Can check all installed properly using the following commands, ionic -v AND  cordova -v Second, need to install and setup Android SDK, The simple way in install Android Studio and to go, Tools->Android->SDK Manager Can see all the available android versions over there. Do check the appropriate version you want and proceed with the installation. Then make sure that, android PATH set in the global paths. To do that simply open ~/.bash_profile and add the following lines, export ANDROID_HOME="Users/ <USERNAME> /Library/Android/sdk" export PATH=${PATH}:/Users/ <USERNAME> /Library/Android/sdk/platform-tools:/Users/ <USERNAME>