Update to target Android SDK platform 24 (N)

This commit is contained in:
Henrik Rydgard 2016-07-25 01:05:13 +02:00
parent eb72a746b9
commit 526d1682ae
6 changed files with 3 additions and 6 deletions

View file

@ -7,7 +7,7 @@
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="23" />
android:targetSdkVersion="24" />
<uses-feature android:glEsVersion="0x00020000" />
<uses-feature android:name="android.hardware.screen.landscape" android:required="false" />

View file

@ -11,4 +11,4 @@
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
# Project target.
target=android-23
target=android-24

View file

@ -399,7 +399,6 @@ public class NativeActivity extends Activity implements SurfaceHolder.Callback {
sz.y = NativeApp.getDesiredBackbufferHeight();
}
@SuppressWarnings("deprecation")
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

View file

@ -4,7 +4,6 @@ import javax.microedition.khronos.egl.EGL10;
import javax.microedition.khronos.egl.EGLConfig;
import javax.microedition.khronos.egl.EGLDisplay;
import android.graphics.PixelFormat;
import android.opengl.GLSurfaceView.EGLConfigChooser;
import android.util.Log;

View file

@ -2,7 +2,6 @@ package org.ppsspp.ppsspp;
import android.app.AlertDialog;
import android.content.Intent;
import android.graphics.Point;
import android.os.Build;
import android.os.Bundle;
import android.os.Looper;

View file

@ -62,7 +62,6 @@ public class ShortcutActivity extends Activity {
private void showBadGameMessage() {
new Thread() {
@SuppressWarnings("deprecation")
@Override
public void run() {
Looper.prepare();
@ -85,6 +84,7 @@ public class ShortcutActivity extends Activity {
// Event when a file is selected on file dialog.
private SimpleFileChooser.FileSelectedListener onFileSelectedListener = new SimpleFileChooser.FileSelectedListener() {
@Override
public void onFileSelected(File file) {
// create shortcut using file path
respondToShortcutRequest(file.getAbsolutePath());