I have a mobile application that links to the Soundcloud track. On Android, clicking on these links opens a dialog box asking the user to "Complete the action" using their browser or Soundcloud application.

Is there a way to get around this screen and just play the track in Soundcloud player?
This is the code that I am currently using. Please suggest any changes or a new way to do this.
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://m.soundcloud.com/blackburnravers/dj-nj-house-music-volume-3"));
startActivity(intent);
source
share