Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
243 B
1
Indexable
Never
fun Context.startWhatsAppIntent(whatsAppNumber: String, text: String) {
    Intent(Intent.ACTION_VIEW).apply {
        data = "https://api.whatsapp.com/".plus("send?phone=$whatsAppNumber?text=$text").toUri()
        startActivity(this)
    }
}