Look at the code piece below and figure out what type of intent is used there.
val YOUTUBE_PACKAGE_NAME = "com.google.android.youtube"
val YOUTUBE_CLASS_NAME = "com.google.android.youtube.WatchActivity"
...
val intent = Intent(Intent.ACTION_VIEW, Uri.parse(url))
intent.setClassName(YOUTUBE_PACKAGE_NAME, YOUTUBE_CLASS_NAME)
startActivity(intent)
...