As you know Flash Player is not distributed on the market anymore, but I've got some apk of Flash hosted on the Internet (example here: http://d-h.st/w2B)
I made an application where Flash is required and so I was wondering if can make something that if a customer click on a button, it will automatically download and install flash on his device?
I found this code to download my apk, but it doesn't work on my Android device, why?
String url = "http://charlie.d-h.st/w2B/00010/Adobe%20Flash%20Player%2011.1%20%281%29.apk";
Uri uri = Uri.parse(url.toString());
Intent browserIntent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(browserIntent);