Kris
Kris

Reputation: 189

Class not found exception on launching application in BlackBerry

When I try to launch my application in Blackberry device/simulator, I'm getting class not found exception. This happens for multiple classes like PermissionsManager, CoverageInfo etc.

What I want to know is what all reasons will end up on "Class not found exception" ? What's the best way to troubleshoot this problem ?

Upvotes: 0

Views: 449

Answers (1)

user784540
user784540

Reputation:

You are launching application created with newer RIM API SDK on device with older device OS software.

ApplicationPermissionsManager class is available for device os 4.2.1 or above.

CoverageInfo class is available for device os 4.2.0 or above.

Seems that you are running your app on device with OS older than 4.2.0

And classes you used just are not implemented in your device software (device OS).

Upvotes: 1

Related Questions