Built with the old NDK api level
This commit is contained in:
parent
f09ff9319d
commit
126361d1c1
4 changed files with 5 additions and 4 deletions
|
@ -13,6 +13,7 @@ model {
|
||||||
ndk {
|
ndk {
|
||||||
moduleName "droid48"
|
moduleName "droid48"
|
||||||
ldLibs.addAll(["android", "log"])
|
ldLibs.addAll(["android", "log"])
|
||||||
|
platformVersion = "9"
|
||||||
}
|
}
|
||||||
|
|
||||||
productFlavors {
|
productFlavors {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="org.ab.x48" android:installLocation="auto" android:versionCode="71" android:versionName="1.71">
|
package="org.ab.x48" android:installLocation="auto" android:versionCode="72" android:versionName="1.72">
|
||||||
<application android:icon="@drawable/icon" android:label="@string/app_name">
|
<application android:icon="@drawable/icon" android:label="@string/app_name">
|
||||||
<activity android:name=".X48"
|
<activity android:name=".X48"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
|
|
|
@ -1050,8 +1050,7 @@ public class HPView extends SurfaceView implements SurfaceHolder.Callback, Runna
|
||||||
if (queuedCodes.size() == 0) {
|
if (queuedCodes.size() == 0) {
|
||||||
return 0;
|
return 0;
|
||||||
} else {
|
} else {
|
||||||
int c = queuedCodes.remove(0);
|
return queuedCodes.remove(0);
|
||||||
return c;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -50,7 +50,7 @@ public class X48 extends Activity {
|
||||||
private ReLinker.Logger logcatLogger = new ReLinker.Logger() {
|
private ReLinker.Logger logcatLogger = new ReLinker.Logger() {
|
||||||
@Override
|
@Override
|
||||||
public void log(String message) {
|
public void log(String message) {
|
||||||
Log.d("ReLinker", message);
|
Log.d("x48", message);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -90,6 +90,7 @@ public class X48 extends Activity {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void failure(Throwable t) {
|
public void failure(Throwable t) {
|
||||||
|
t.printStackTrace();
|
||||||
mHandler.obtainMessage(0).sendToTarget();
|
mHandler.obtainMessage(0).sendToTarget();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue