I am using this code to implement badge notification in Blackberry
Bitmap bit = Bitmap.getBitmapResource("badge_icon.png");
HomeScreen.updateIcon(bit);
This code works fine on simulator
with no issues, but fails to do the same on device. :(
I have properly signed the code with signing keys, but still its says "Module 'BADGE' attempts to access secure api". I have used other secure api's in code as well... So I know those api's get signed, but i don't know y this api (HomeScreen.updateIcon(bit);) has a problem.