Update android emulator images

This commit is contained in:
Mikhael Bogdanov
2017-11-09 14:47:45 +01:00
parent b8c5d1b852
commit 5250d947e7
2 changed files with 6 additions and 3 deletions
@@ -62,8 +62,8 @@ public class SDKDownloader {
}
private void downloadAbi() {
download("https://dl.google.com/android/repository/sys-img/android/sysimg_armv7a-" + ANDROID_VERSION + "_r03.zip", armImage); //Same for all platforms
download("https://dl.google.com/android/repository/sys-img/android/sysimg_x86-" + ANDROID_VERSION + "_r05.zip", x86Image); //Same for all platforms
download("https://dl.google.com/android/repository/sys-img/android/armeabi-v7a-" + ANDROID_VERSION + "_r05.zip", armImage); //Same for all platforms
download("https://dl.google.com/android/repository/sys-img/android/x86-" + ANDROID_VERSION + "_r06.zip", x86Image); //Same for all platforms
}
public void downloadPlatformTools() {
@@ -74,7 +74,10 @@ public class Emulator {
commandLine.setExePath(pathManager.getToolsFolderInAndroidSdk() + "/" + emulatorCmdName);
commandLine.addParameter("-avd");
commandLine.addParameter("my_avd");
commandLine.addParameter("-no-audio");
if (platform != X86) {
//problem with qemu options
commandLine.addParameter("-no-audio");
}
commandLine.addParameter("-no-window");
return commandLine;
}