CodeModuleManager.CMM_OK_MODULE_MARKED_FOR_DELETION on BlackBerry device
When I call CodeModuleManager.deleteModuleEx()
to delete a Module, the return value is CodeModuleManager.CMM_OK_MODULE_MARKED_FOR_DELETION
using the simulator, but the return value is CodeModul开发者_如何学编程eManager.CMM_OK
when I run same application on device. The device is a 9700 and the Platform is 5.1.0.121.
i think after deletion reset is required. if you are not doing already, add this code also.
if (CodeModuleManager.isResetRequired())
CodeModuleManager.promptForResetIfRequired();
精彩评论