Gluten free product web search engine

Just a month ago I released a huge project for “Is it kosher?” – web search app. And now it came time for Gluten free project. Here we go – web search engine for Gluten free products. Database contains more that 1 million products from different sources of information. It is possible to buy right… Continue reading Gluten free product web search engine

Download and install apk files from app in Android

For the purposes of simple download of file from app, I wrote the following function: private void Download (String url, String packageName) { int count; try { java.net.URL url1 = new java.net.URL(url); URLConnection conexion = url1.openConnection(); conexion.connect(); // this will be useful so that you can show a tipical 0-100% progress bar int lenghtOfFile =… Continue reading Download and install apk files from app in Android