View Single Post
Old 06-18-2012, 07:42 AM   #1
hdehaan
New Member
 
Join Date: Jun 2012
Model: 7800
PIN: N/A
Carrier: KLM
Posts: 3
Default Blackberry Location.getBearing NoClassDefFound

Please Login to Remove!

Hello,
I have a Blackberry 9800 V6.0.0.668.
and Eclipse with Blackberry jdk 7.0

I developed GPS software which includes:
public class LocationListenerImpl implements LocationListener

It all works fine.
But as soon as I include the statements:

double d = LocationInfo.getBearing(lat, lon, nl, ew);
All argument are of type double.

and in the application class

try
{
_locationProvider.setLocationListener(new LocationListenerImpl(_screen), 2, -1, -1);
}
catch (NoClassDefFoundError e)
{
e.printStackTrace();
}


I get the NoClassDefFound exception.
In the constructor I have

LocationInfo.setLocationOn();

which doesn't provide this exception.

So, the getBearing call is causing the problem.

Can somebody help me, please?
Offline   Reply With Quote