[ad_1]
Simple question, How to intent to Gmail in jetpack compose?
before compose I used to be use this code, but what about now?
val recipients =
arrayOf(GMAIL)
intent.putExtra(Intent.EXTRA_EMAIL, recipients)
intent.putExtra(Intent.EXTRA_SUBJECT, SUBJECT)
intent.putExtra(Intent.EXTRA_TEXT, TEXT)
intent.putExtra(Intent.EXTRA_CC, GMAIL)
intent.type = "text/html"
intent.setPackage("com.google.android.gm")
startActivity(Intent.createChooser(intent, "Send mail"))
[ad_2]