Android 无法以编程方式打开 Spotify 应用程序

Android Unable to open Spotify app programmatically

我已经在 android phone 中安装了 Spotify 应用程序。 以下代码无法以编程方式启动或打开 Spotify 应用程序。请帮忙

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)

要使用包名打开任何应用程序,您可以按照以下步骤操作:.

对于 Spotify:

val launchIntent = packageManager.getLaunchIntentForPackage("com.spotify.music")
if (launchIntent != null) { 
    startActivity(launchIntent)
}