My app works fine on 480*800 phones. But it crashes on 720p phones . I tested it on galaxy s3 and xperia sl. Here is the logcat error
and code which is causing error according to my judgment is this
mapView = new MapView(this) {
@Override
public boolean onTouchEvent(MotionEvent event) {
if (gestureDetector.onTouchEvent(event)) {
return true;
}
return super.onTouchEvent(event);
}
};
mapView.setClickable(true);
mapView.setCenter(new GeoPoint(33.698351,73.063889));
mapView.zoom((byte) 12, 5);
mapView.setBuiltInZoomControls(true);
mapView.setMapFile(new File(Environment.getExternalStorageDirectory()+"/pakistan.map"));