/**
* Installation and downloading APK
* @param savedFile
*/
private void installAPK(File savedFile) {
//Calling the system installation method
Intent intent=new Intent();
(intent.ACTION_VIEW);
((savedFile), "application/-archive");
startActivity(intent);
finish();
}