ANDROID: Fix some errors pointed out by lint

This commit is contained in:
Dries Harnie 2018-10-23 01:03:01 +02:00
parent 1ede4ebd0d
commit 5f556103df
2 changed files with 4 additions and 1 deletions

View File

@ -17,6 +17,7 @@ import javax.microedition.khronos.egl.EGLSurface;
import java.io.File;
import java.util.LinkedHashMap;
@SuppressWarnings("JniMissingFunction")
public abstract class ResidualVM implements SurfaceHolder.Callback, Runnable {
final protected static String LOG_TAG = "ResidualVM";
final private AssetManager _asset_manager;

View File

@ -14,7 +14,9 @@
android:label="@string/app_name"
android:description="@string/app_desc"
android:allowBackup="false"
android:icon="@drawable/residualvm">
android:icon="@drawable/residualvm"
android:extractNativeLibs="false"
android:isGame="true">
<activity android:name=".ResidualVMActivity"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:screenOrientation="landscape"