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 {
48
48
private static final String GETTING_START_TUT_URL =
49
49
"http://android.processing.org/tutorials/getting_started/index.html" ;
50
50
51
-
52
- static final String DEFAULT_SDCARD_SIZE = "512M" ;
53
-
54
51
static final String DEVICE_DEFINITION = "pixel_6" ;
55
52
static final String DEVICE_SKIN = "pixel_6" ;
56
53
@@ -368,10 +365,9 @@ protected boolean create(final AndroidSDK sdk) throws IOException {
368
365
avdManager .getCanonicalPath (),
369
366
"create" , "avd" ,
370
367
"-n" , name ,
371
- "-k" , "\" " + getSdkId () + "\" " ,
372
- "-c" , DEFAULT_SDCARD_SIZE ,
373
- "-d" , device ,
368
+ "-k" , getSdkId (),
374
369
"-p" , avdPath .getAbsolutePath (),
370
+ "-d" , device ,
375
371
"--skin" , skin ,
376
372
"--force"
377
373
};
You can’t perform that action at this time.
0 commit comments