Архив загрузки эмулятора
Оптимизируйте свои подборки
Сохраняйте и классифицируйте контент в соответствии со своими настройками.
На этой странице представлен архив выпусков эмулятора. Пожалуйста, просмотрите файл лицензии в пакете эмулятора для получения информации о лицензировании.
Для получения наилучших результатов ознакомьтесь с системными требованиями эмулятора .
Как вручную установить выбранную версию эмулятора
Чтобы вручную установить выбранную версию эмулятора в Studio, вам необходимо вставить содержимое нужного пакета эмулятора в каталог установки SDK и изменить версию эмулятора, указанную в файле package.xml
. В частности, выполните следующие действия:
- Найдите каталог установки SDK. Местоположение этого каталога по умолчанию зависит от платформы:
- В Windows это каталог
%LocalAppData%\Android\Sdk
. Обычно это расширяется до C:\Users\<username>\AppData\Local\Android\Sdk
, хотя это может отличаться в зависимости от вашей системы. - В macOS это каталог
$HOME/Library/Android/sdk
. - В Linux это каталог
$HOME/Android/Sdk
.
Вы можете проверить, где находится каталог установки SDK, открыв Studio и нажав Android Studio > Настройки > Внешний вид и поведение > Настройки системы > Android SDK . Путь к файлу местоположения Android SDK — это местоположение каталога установки SDK.
Если вы используете macOS и просматриваете страницы с помощью Finder, папка Library
может быть не видна по умолчанию. Чтобы перейти туда, откройте Finder, нажмите «Перейти» > «Перейти в папку» и найдите «Библиотека».
- Переименуйте существующий каталог
emulator
в каталоге установки SDK, поскольку на следующем шаге вы разархивируете только что загруженный каталог emulator
. Например, назовите его emulator_original
. - Разархивируйте загруженный вами zip-файл эмулятора. Переместите содержимое в каталог установки SDK.
В macOS: после распаковки zip-файла эмулятора очистите атрибут карантина в пакете эмулятора, выполнив:
xattr -dr com.apple.quarantine emulator/
Это должно уменьшить количество сообщений о том, следует ли проверить или заблокировать пакет.
- Вставьте файл
package.xml
из каталога emulator_original
в новый каталог emulator
. Измените версию эмулятора, указанную в файле package.xml
, на версию, которую вы скачали и хотите использовать. Для этого прокрутите файл package.xml
до конца и найдите текст следующего вида:
<revision><major>31</major><minor>1</minor><micro>4</micro></revision>
Здесь вам следует указать версию эмулятора, которую вы скачали и хотите установить.
[[["Прост для понимания","easyToUnderstand","thumb-up"],["Помог мне решить мою проблему","solvedMyProblem","thumb-up"],["Другое","otherUp","thumb-up"]],[["Отсутствует нужная мне информация","missingTheInformationINeed","thumb-down"],["Слишком сложен/слишком много шагов","tooComplicatedTooManySteps","thumb-down"],["Устарел","outOfDate","thumb-down"],["Проблема с переводом текста","translationIssue","thumb-down"],["Проблемы образцов/кода","samplesCodeIssue","thumb-down"],["Другое","otherDown","thumb-down"]],[],[],[],null,["This page provides an archive of Emulator releases. Please review the\n[license file](https://cs.android.com/android/platform/superproject/+/master:prebuilts/android-emulator/NOTICE)\nin the emulator package for licensing information.\n\nFor the best experience, please review the [Emulator system requirements](/studio/run/emulator#requirements).\n\nHow to manually install a select version of emulator\n\nTo manually install a select version of emulator on Studio, you need to paste the desired\nemulator package contents into your SDK installation directory, and change the emulator version\nspecified in the `package.xml` file. Specifically, follow these steps:\n\n1. Locate your SDK installation directory. The default location of this directory varies by platform:\n - On Windows, it's the `%LocalAppData%\\Android\\Sdk` directory. This normally expands to `C:\\Users\\\u003cusername\u003e\\AppData\\Local\\Android\\Sdk`, although it might vary based on your system.\n - On macOS, it's the `$HOME/Library/Android/sdk` directory.\n - On Linux, it's the `$HOME/Android/Sdk` directory.\n\n You can check where your SDK installation directory is by opening Studio and clicking\n **Android Studio \\\u003e Preferences \\\u003e Appearances \\& Behavior \\\u003e System Settings \\\u003e\n Android SDK** . The **Android SDK Location** file path is your SDK installation\n directory location.\n\n If you're using macOS and browsing using Finder, the `Library` folder might not be\n visible by default. To navigate there, open Finder and click **Go \\\u003e Go to Folder**\n and search for \"Library.\"\n2. Rename the existing `emulator` directory in the SDK installation directory, because you'll unzip the newly downloaded `emulator` directory here in the next step. For example, call it `emulator_original`.\n3. Unzip the emulator zip file you downloaded. Move the contents into the SDK installation directory.\n4. On macOS: After unzipping the emulator zip file, clear the quarantine attribute on the\n emulator package by running:\n\n `\n xattr -dr com.apple.quarantine emulator/\n `\n\n This should reduce messages about whether the package should be checked or blocked.\n5. Paste the `package.xml` file from the `emulator_original` directory into the new `emulator` directory.\n6. Change the emulator version specified in the `package.xml` file to the version you\n have downloaded and want to use. To do this, scroll to the bottom of the `package.xml`\n file and find the text that looks like:\n\n `\n \u003crevision\u003e\u003cmajor\u003e31\u003c/major\u003e\u003cminor\u003e1\u003c/minor\u003e\u003cmicro\u003e4\u003c/micro\u003e\u003c/revision\u003e\n `\n\n This is where you should specify the emulator version you downloaded and want to install."]]