We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a211e5 commit 9f5b33cCopy full SHA for 9f5b33c
1 file changed
mode/src/processing/mode/android/AVD.java
@@ -48,9 +48,6 @@ public class AVD {
48
private static final String GETTING_START_TUT_URL =
49
"http://android.processing.org/tutorials/getting_started/index.html";
50
51
-
52
- static final String DEFAULT_SDCARD_SIZE = "512M";
53
54
static final String DEVICE_DEFINITION = "pixel_6";
55
static final String DEVICE_SKIN = "pixel_6";
56
@@ -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,
+ "-k", getSdkId(),
374
"-p", avdPath.getAbsolutePath(),
+ "-d", device,
375
"--skin", skin,
376
"--force"
377
};
0 commit comments