Skip to content

Commit 825b154

Browse files
committed
download Android 8.0 by default
1 parent 1fba35d commit 825b154

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/processing/mode/android/AndroidBuild.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ class AndroidBuild extends JavaBuild {
6262
static public String TARGET_PLATFORM;
6363
static {
6464
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";
65+
if (TARGET_SDK == null || PApplet.parseInt(TARGET_SDK) < 26) {
66+
// Must be 8.0 or higher
67+
TARGET_SDK = "26";
6868
Preferences.set("android.sdk.target", TARGET_SDK);
6969
}
7070
TARGET_PLATFORM = "android-" + TARGET_SDK;

0 commit comments

Comments
 (0)