Changed Java source file to use constant from API instead of just a String.
--- a/android-project/src/org/libsdl/app/SDLActivity.java Sat Apr 27 14:13:30 2013 +0200
+++ b/android-project/src/org/libsdl/app/SDLActivity.java Sat Apr 27 14:26:15 2013 +0200
@@ -482,7 +482,7 @@
setOnKeyListener(this);
setOnTouchListener(this);
- mSensorManager = (SensorManager)context.getSystemService("sensor");
+ mSensorManager = (SensorManager)context.getSystemService(Context.SENSOR_SERVICE);
// Some arbitrary defaults to avoid a potential division by zero
mWidth = 1.0f;