Skip to content

Commit 9f5b33c

Browse files
committed
remoed sd card size from avd creation
1 parent 0a211e5 commit 9f5b33c

File tree

1 file changed

+2
-6
lines changed
  • mode/src/processing/mode/android

1 file changed

+2
-6
lines changed

mode/src/processing/mode/android/AVD.java

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff 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
};

0 commit comments

Comments
 (0)