File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
mode/src/processing/mode/android Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -48,9 +48,6 @@ public class AVD {
4848 private static final String GETTING_START_TUT_URL =
4949 "http://android.processing.org/tutorials/getting_started/index.html" ;
5050
51-
52- static final String DEFAULT_SDCARD_SIZE = "512M" ;
53-
5451 static final String DEVICE_DEFINITION = "pixel_6" ;
5552 static final String DEVICE_SKIN = "pixel_6" ;
5653
@@ -368,10 +365,9 @@ protected boolean create(final AndroidSDK sdk) throws IOException {
368365 avdManager .getCanonicalPath (),
369366 "create" , "avd" ,
370367 "-n" , name ,
371- "-k" , "\" " + getSdkId () + "\" " ,
372- "-c" , DEFAULT_SDCARD_SIZE ,
373- "-d" , device ,
368+ "-k" , getSdkId (),
374369 "-p" , avdPath .getAbsolutePath (),
370+ "-d" , device ,
375371 "--skin" , skin ,
376372 "--force"
377373 };
You can’t perform that action at this time.
0 commit comments