I am trying to install apk programatically from assets folder but not success, Please help me. I am using following code for that. thank you.
Intent intent = new Intent(Intent.ACTION_VIEW)
.setData(Uri.parse("file:///android_asset/youtuberanjit.apk"))
.setType("application/vnd.android.package-archive");
startActivity(intent);
Copy the apk file into assets folder.
try this method it worked for me ..........