I am developing a NativeScript Android application in which I want the user to be able to open a WhatsApp contact after pressing a button (only phone number is known). I currently use Nativescript-open-app to open WhatsApp. Is it possible to also open the conversation?
To open WhatsApp I use the following code (maybe it's possible by altering "com.whatsapp"?):
var openApp = require("nativescript-open-app").openApp;
var installed = openApp("com.whatsapp");
Any help is welcome, thank you!