04-30-2012 11:03 AM
Hello,
Please i need help, I am trying to send a short message from an app to a specific bbm contact (something like the app share on BlackBerry App World), and i dont want to use the BBM SDK just yet, I have tried this:::
BlackBerryMessenger bbm = BlackBerryMessenger.getInstance();
Message msg = new Message(text, null);
if (bbm != null){
MessengerContact mcon = bbm.chooseContact();
if(mcon != null){
Session session = mcon.getSession();
session.send(msg);
}
}
but its not working! I will appreciate any help.
05-03-2012 03:10 PM
Those APIs are no longer supported. You'll need to use the APIs defined in the BBM SDK to integrate with BlackBerry Messenger.