Commit 2a4855f9ee0d8f2acbcdca8f1f9474f6dc06bcb4

Philipp Wiesemann 2015-10-15T22:26:00

Android: Added missing import statement. It did not compile without.

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/android-project/src/org/libsdl/app/SDLActivity.java b/android-project/src/org/libsdl/app/SDLActivity.java
index 424c852..0a2e5d8 100644
--- a/android-project/src/org/libsdl/app/SDLActivity.java
+++ b/android-project/src/org/libsdl/app/SDLActivity.java
@@ -11,6 +11,7 @@ import java.lang.reflect.Method;
 
 import android.app.*;
 import android.content.*;
+import android.text.InputType;
 import android.view.*;
 import android.view.inputmethod.BaseInputConnection;
 import android.view.inputmethod.EditorInfo;