nord vpnnord vpn
Ad

Untitled

mail@pastecode.io avatar
unknown
plain_text
2 months ago
243 B
0
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)
    }
}

nord vpnnord vpn
Ad