24 February 2013

How to convert a website compatible for Mobile versions into a working Android application in 15 mins

Few days ago,I had to build a Android Based application from a existing website compatible with Mobile versions
So after some research, I was able to find a way through coordova framework

First of all you have to know how to build a basic android application, you can refer below mentioned url for this



Once set up, just add a small change in following file

MainActivity.java in your main Application package

super.loadUrl("file:///android_asset/www/index.html");
to 
super.loadUrl("http://example.com");

Here example.com is a url of your website, which you want to convert, If you have any doubts, Feel free to ask me

No comments:

Post a Comment