11-09-2012 08:29 AM
Hi,
My Blackberry app is finished and works fine on Blackberry devices with OS 6, or OS 7.
But, my client wants app to be functional on Blackberry devices with OS 5.
When app is downloaded and started on device with OS 5, (example Blackberry 9550), then following message in debugger appears:
Thread [net_rim_bb_ribbon_app(85)id=126808064] (Suspended (exception RuntimeException))
ApplicationEntryPoint.run() line: 401
ApplicationEntry.invoke() line: 559
[0.0] Class 'net.rim.device.api.ui.menu.ContextMenuProvider' not found.[0.0]
[0.0] Linker error: 'VerifyError' for app
[0.0] VM:CLRCv=0
[0.0] Error starting app: Class 'net.rim.device.api.ui.menu.ContextMenuProvider' not found.
Where to start, and how to fix this backward incompatibility?
Thanks
Solved! Go to Solution.
11-09-2012 08:46 AM
You are going to have to preprocess your code as contextmenuprovider is only supported in OS6 and up.
11-09-2012 08:48 AM
Have a look at the following link:
and search the forum for examples.
11-09-2012 09:42 AM
11-14-2012 02:35 AM
Thank you all..