@@ -62,8 +62,8 @@ 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 ) < 26 ) {
66- TARGET_SDK = "26 " ;
65+ if (TARGET_SDK == null || PApplet .parseInt (TARGET_SDK ) < 27 ) {
66+ TARGET_SDK = "27 " ;
6767 Preferences .set ("android.sdk.target" , TARGET_SDK );
6868 }
6969 TARGET_PLATFORM = "android-" + TARGET_SDK ;
@@ -75,35 +75,35 @@ class AndroidBuild extends JavaBuild {
7575 static public String SUPPORT_VER ;
7676 static {
7777 SUPPORT_VER = Preferences .get ("android.sdk.support" );
78- if (SUPPORT_VER == null || !versionCheck (SUPPORT_VER , "26.0.2 " )) {
79- SUPPORT_VER = "26.0.2 " ;
78+ if (SUPPORT_VER == null || !versionCheck (SUPPORT_VER , "27.1.1 " )) {
79+ SUPPORT_VER = "27.1.1 " ;
8080 Preferences .set ("android.sdk.support" , SUPPORT_VER );
8181 }
8282 }
8383
8484 static public String PLAY_SERVICES_VER ;
8585 static {
8686 PLAY_SERVICES_VER = Preferences .get ("android.sdk.play_services" );
87- if (PLAY_SERVICES_VER == null || !versionCheck (PLAY_SERVICES_VER , "11 .0.4 " )) {
88- PLAY_SERVICES_VER = "11 .0.4 " ;
87+ if (PLAY_SERVICES_VER == null || !versionCheck (PLAY_SERVICES_VER , "15 .0.1 " )) {
88+ PLAY_SERVICES_VER = "15 .0.1 " ;
8989 Preferences .set ("android.sdk.play_services" , PLAY_SERVICES_VER );
9090 }
9191 }
9292
9393 static public String WEAR_VER ;
9494 static {
9595 WEAR_VER = Preferences .get ("android.sdk.wear" );
96- if (WEAR_VER == null || !versionCheck (WEAR_VER , "2.1 .0" )) {
97- WEAR_VER = "2.1 .0" ;
96+ if (WEAR_VER == null || !versionCheck (WEAR_VER , "2.3 .0" )) {
97+ WEAR_VER = "2.3 .0" ;
9898 Preferences .set ("android.sdk.wear" , WEAR_VER );
9999 }
100100 }
101101
102102 static public String GVR_VER ;
103103 static {
104104 GVR_VER = Preferences .get ("android.sdk.gvr" );
105- if (GVR_VER == null || !versionCheck (GVR_VER , "1.150 .0" )) {
106- GVR_VER = "1.150 .0" ;
105+ if (GVR_VER == null || !versionCheck (GVR_VER , "1.170 .0" )) {
106+ GVR_VER = "1.170 .0" ;
107107 Preferences .set ("android.sdk.gvr" , GVR_VER );
108108 }
109109 }
0 commit comments