Send WhatsApp message in background or send message and close the app in android
Is it possible to send whatsApp message without opening the app, to be sent in the background like sending SMS using: smsManager.sendTextMessage("+12546304580", null, "Test Message", null, null); if so how? The code that I tried opens the APP (WITH INTENT): Intent waIntent = new Intent(Intent.ACTION_SEND); waIntent.setType("text/plain"); String text = "Test Message"; waIntent.setPackage("com.whatsapp"); waIntent.putExtra(Intent.EXTRA_TEXT, text);// startActivity(Intent.createChooser(waIntent, "Share with")); Or is it possible open the app send message to given address and close it? Thanks! No,