'Android Unable to open Spotify app programmatically

I have installed Spotify app in my android phone. Below code was not able to launch or open Spotify app programmatically. Please help.

Android Intent:
PackageName: com.spotify.music
ActionName: android.intent.action.VIEW


  val intent = Intent(Intent.action.VIEW) 

  intent.setPackage("com.spotify.music")

if (intent.resolveActivity(packageManager) == null) {
            Toast.makeText(this,"Please install Spotify App first.",Toast.LENGTH_SHORT).show()
            return
        }


  startActivity(intent)


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source