Programmatically share the text in BBM blackberry

474 Views Asked by At

I need to share my text in BBM, i have tried this code

protected void sendBBM() {
    BlackBerryMessenger bbm = BlackBerryMessenger.getInstance();

    int moduleHandle = CodeModuleManager.getModuleHandle("net_rim_bb_qm_peer");
    ApplicationDescriptor[] apDes = CodeModuleManager.getApplicationDescriptors(moduleHandle);
    try {
        ApplicationManager.getApplicationManager().launchApplication("net_rim_bb_qm_peer");
    } catch (ApplicationManagerException e) {
        e.printStackTrace();
    } 
}

it's going to BBM menu in simulator. but, when i run in my 9300 Mobile it's going to catch statement(Error starting null: null), and BBM is not opening.

Can anyone provide some solutions to solve this issue?

0

There are 0 best solutions below