We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fba35d commit 825b154Copy full SHA for 825b154
src/processing/mode/android/AndroidBuild.java
@@ -62,9 +62,9 @@ class AndroidBuild extends JavaBuild {
62
static public String TARGET_PLATFORM;
63
static {
64
TARGET_SDK = Preferences.get("android.sdk.target");
65
- if (TARGET_SDK == null || PApplet.parseInt(TARGET_SDK) < 25) {
66
- // Must be 7.1.1 or higher
67
- TARGET_SDK = "25";
+ if (TARGET_SDK == null || PApplet.parseInt(TARGET_SDK) < 26) {
+ // Must be 8.0 or higher
+ TARGET_SDK = "26";
68
Preferences.set("android.sdk.target", TARGET_SDK);
69
}
70
TARGET_PLATFORM = "android-" + TARGET_SDK;
0 commit comments