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
Tag: app
Open Formula 1 Live got maps and videos
Here comes version 3.2. Two main features were added to the app. 1. Possibility to view Circuit map from bird-fly view. 2. Youtube videos, related to Formula 1. App is available on Android play
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