mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Update to target Android SDK platform 24 (N)
This commit is contained in:
parent
eb72a746b9
commit
526d1682ae
6 changed files with 3 additions and 6 deletions
|
@ -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" />
|
||||
|
|
|
@ -11,4 +11,4 @@
|
|||
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
|
||||
|
||||
# Project target.
|
||||
target=android-23
|
||||
target=android-24
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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());
|
||||
|
|
Loading…
Add table
Reference in a new issue