JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Error staging apk from content URI
java.io.FileNotFoundException: No content provider: content:///storage/emulated/0/Download/LocalClockTouch.apk
The source code is
Intent intent= new Intent(android.content.Intent.ACTION_VIEW);
intent.addFlags(android.content.Intent.FLAG_ACTIVITY_CLEAR_TASK);
intent.addFlags(android.content.Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addFlags(android.content.Intent.FLAG_GRANT_READ_URI_PERMISSION);
intent.addFlags(android.content.Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
intent.setDataAndType(android.net.Uri.parse("content://"+ Value), "application/vnd.android.package-archive");
intent.putExtra("android.intent.extra.OPEN_DISABLED", true);
this.startActivity(intent);
Can someone explain with is the error? The path is correct.