How can i open APK file recently downloaded from my application?
I tried:
Intent it = new Intent(Intent.ACTION_VIEW, Uri.fromFile(file));
startActivity(it);
But this didn't work at all it wanted to open it by PDF reader.
public void install(File file){
if(file.exists()){
Intent i = new Intent();
i.setAction(android.content.Intent.ACTION_VIEW);
i.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive");
startActivity(i);}
}
With this code i have package error while opening this app.