public void onCreate()
{
// The following line triggers the initialization of ACRA
ACRA.init( this );
super.onCreate();
//Setup location lookup
_locationManager = (LocationManager)getSystemService( LOCATION_SERVICE );
_locationManager.requestLocationUpdates( LocationManager.GPS_PROVIDER, 0, 0, this );
_locationManager.addGpsStatusListener( this );
}
我有上面的代码错误04-27 10:17:23.935:E / AndroidRuntime(289):java.lang.NoClassDefFoundError:org.acra.ACRA, ACRA.init(这),这一行评论意味着工作其他的工作不起作用 所以请给任何想法......