Android: increase emulator disk size, for debug builds

Avoid INSTALL_FAILED_INSUFFICIENT_STORAGE on install.
This commit is contained in:
Simon Sapin 2018-07-02 16:56:49 +02:00
parent eecbe83750
commit c0d1b8e808

View file

@ -158,7 +158,7 @@ class MachCommands(CommandBase):
process.stdin.write("no\n")
assert process.wait() == 0
with open(path.join(toolchains, "avd", avd_name, "config.ini"), "a") as f:
f.write("disk.dataPartition.size=1G\n")
f.write("disk.dataPartition.size=2G\n")
@Command('update-hsts-preload',
description='Download the HSTS preload list',