I am trying to install an apk using the following code below, whenever I tried to execute the code, it only shows 'Starting...'. I don't see any notification that the apk is being installed.
Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse(url));
startActivity(intent);