Возможные ошибки и их решение
Здесь собраны рецепты исправления ошибок, которые могут возникнуть при выполнении шагов из статей этой главы. В случае, если вашей ситуации здесь нет, отпишитесь, пожалуйста, в комментариях и я постараюсь помочь решить вам вашу проблему.
Если при ошибке выводится некая надпись, то её описание и решение будет находиться ниже под заголовком содержащим эту надпись.
Your project location contains non-ASCII characters. This can cause problems on Windows. Proceed with caution.

Она появляется при создании нового проекта в Android Studio. Предупреждает о том, что путь к рабочей папке не валидный.
Решение
Выбрать путь к рабочей папке не содержащий кириллицу. Например, создать папку в корне диска D, чтобы путь был наподобие следующего D:\Android\
emulator: ERROR: x86 emulation currently requires hardware acceleration!
>emulator: ERROR: x86 emulation currently requires hardware acceleration!
>Please ensure Intel HAXM is properly installed and usable.
>CPU acceleration status: HAX kernel module is not installed!.
Эта ошибка появляется при попытке запуска приложения на эмуляторе. Она означает, что не был установлен Intel Hardware Accelerated Execution Manager. Если интересно, вот здесь подробнее.
Решение
Убедитесь в SDK Manager, что вы установили «Intel x86 Emulator Accelerator (HAXM installer)».

Установите в случае необходимости.
Перейдите в директорию SDK (обычно это C:\users\<имя пользователя>\AppData\Local\Android\sdk), там перейдите в папку \extras\intel\Hardware_Accelerated_Execution_Manager, там найдите файл intelhaxm-android.exe, запустите его и пройдите через мастер установки.
В случае если при установке вылетела ошибка «This computer meets requirements for HAXM, but VT-x is not turned on. «
Устраняем ошибку: Your SDK location contains non-ASCII characters при установке Android Studio
Добавлено: 10 май 2019 
При установке Android Studio столкнулся с проблемой установки SDK. Нажать кнопку «Next» нельзя, а внизу с пометкой «внимание» находится надпись: Your SDK location contains non-ASCII characters . Что делать в такой ситуации? Я нашел два рабочих решения.
- Причина ошибки
- Варианты устранения ошибки
- Вариант 1: изменение пути
- Вариант 2: смена имени пользователя
Причина ошибки
Она банальна. Имя вашей учетной записи Windows написано не на английском. А программа брезгует устанавливать файлы в директорию, если папка в ней указана на другом языке (русский, турецкий, испанский, арабский и прочее).

Варианты устранения ошибки
Процесс устранения сводится к тому, чтобы обеспечить англоязычный путь к Android\ SDK.

Вариант 1: изменение пути
Банальный способ, который помог обойти ошибку:
-
Зайдите на диск C: и создайте две папки Android\SDK.



Вариант 2: смена имени пользователя
Более замороченный способ со сменой имени профиля на англоязычное. Пока вы находитесь в этой учетной записи, переименовать папку невозможно. Поэтому:
- Через поиск найдите CMD и откройте от имени администратора.
- Введите команду net user Администратор /active:yes
- Выйдите из системы и зайдите в профиль только что включенной учетки администратора.
- Нажмите ПКМ на Пуск и выберите «Управление компьютером».
- Перейдите в раздел Управление компьютером — Локальные пользователи — Пользователи, нажмите ПКМ по имени учетной записи и отредактируйте ее.



Кстати говоря, способ, который находится в поиске, на первой странице в ютубе, не работает. По отзывам видно, что не у одного меня.
При создании символической ссылки командой mklink /D «C:\ android-sdk» «C:\ Users\ Игорь\ AppData\ Local\ Android\ sdk, она не отображается в пути установщика, а через проводник выдает «расположение недоступно».

В общем, устаняйте ошибку Android Studio, а сайт добавляйте в закладки. И до скорых встречь!
Your SDK location contains non-ASCII characters — no Android in Tools Menu
I’ve just downloaded and installed Android Studio but there is no Android submenu in Tools menu and no AVD Manager icon on the instrument panel. When I start SDK Manager, there is an error message:
Please specify a Android SDK location
If I click on Edit link next to Android SDK Location field, there is another error message:
Your SDK location contains non-ASCII characters
I studied these somewhat similar questions, but non of them helped me:
I see that the path really contains non-ASCII characters, but is there any workaround other than uninstall Android Studio and then install it from scratch to some other directory like С:\Android\SDK?
UPD:
it seems there is no such workaround at this time

5 Answers 5
As a matter of fact at the moment there is no other way than to re-install Android Studio to some other directory with no non-ASCII characters and blank spaces, like С:\Android\SDK

I guess you’ve solved this by now but I ran into the same problem today and after a little research and some annoying tries I solved it. What I found out is this:
Using mklink function you can create a junction to a location but it will not boter if you are creating a it to a non existing location(that’s the «file not found» you were getting). And you are creating a junction to a non existing location in this case due to C:\Users\username\AppData\Local\Android\Sdk should(not sure about this) be created by the Android Studio Setup Wizard during installation. In order to solve that, you should create \Android\Sdk in C:\Users\username\AppData\Local and it’s done.
The installer does not show junctions to non existing locations in the Sdk install location so if you don’t create the folders you can’t select the link.
Finally but not less important, the installer does not allow the Sdk to be installed in a folder in the root directory C:\ , so you have to create the junction in any other directory but the root one or move it if it’s already there(that’s what I did).
As I was writting this the installer was running and when it was done I came across the exact same problem with the location to store Android Proyects, and so the same solution to the installer must be aplied to the Save location in the New proyect step.
This is exactly what I did:
1) Create \Android\Sdk in C:\Users\username\AppData\Local\
2) Open cmd as admin and enter the following command:
mklink /J «C:\..\android-sdk» «C:\Users\username\AppData\Local\Android\Sdk»
It will return this:
C:\WINDOWS\system32>Junction created for C:\..\android-sdk <<===>> C:\Users\username\AppData\Local\Android\Sdk
Note: android-sdk is the name the junction will have, you can name it as you like and \..\ reffers to the folder where you want to put the it in, make sure there are no non-ASCII characters in the folder’s name anyways.
3) In the Sdk install location, select C:\..\android-sdk and the installation will be ready to go.
4) Repeat the process for the Save location for new proyects, just instead of C:\Users\username\AppData\Local\Android\Sdk use the location you want the proyects to be stored in.
Your android sdk location contains non ascii characters что делать
As shown below:
Reason: this problem because the path is installed in a Chinese SDK
The solution: just put Chinese into English, and no spaces between the EnglishIntelligent Recommendation
Android Error:Your project path contains non-ASCII characters.
When importing the project using Android Studio, the following error occurred: The reason is simple, that isProject path or project name contains Chinese, Just change it and re-import it.
AndroidStudio import project error Your project path contains non-ASCII characters
Because I want to develop a more full-featured version on the original version, copy the project code to another directory: /deep version/demo/, but when I import the project, I get an error. The erro.

Your project path contains non-ASCII characters. This will most likely cause the build to fail.
problem: Your project path contains non-ASCII characters. This will most likely cause the build to fail on Windows. Please move your project to a different directory. See http://b.android.com/95744 fo.

Specify the SDK location in Android Studio
1. AS right click File Click Project Structure Project Structure 2. Project Structure can choose the address of the locally downloaded SDK, JDK, NDK, you can add Moudle and other operations.

contains non-ASCII characters doesn’t have an encoding declaration at the top.
When I open a Django module written by someone else in pycharm, the page appears as shown below: Details of the problem: Non-ASCII character You in file, but no encoding declared less. (Ctrl+.
More Recommendation
Caused by: org.gradle.api.tasks.StopExecutionException: Your project path contains non-ASCII charact
This question was encountered when I opened a project from other places. Most of the answers I searched in Baidu were Add a line of code to Gradle.properties In fact, I have encountered similar mistak.

Android Studio Modify SDK and Simulator Path Location
In order to give the C-Pan Tau Trien space, change some file paths, mainly the SDK, Gradle, and Simulator location. 1. Modify the SDK position First, I have useful ways, directly file-> settings-&g.
Suppose your fastq sequencing data is mixed with non-ascii code characters.
Of course, this situation is rare. Generally speaking, this situation indicates that your fastq sequencing data has an undescribed error in the process of transmission compression and decompression. O.

Prompt when installing Android Studio SDK: The SDK location is inside Studio install location
resulting in The SDK is installed in the editor installation file (Android Studio). solve You need to create a new folder (used to store the SDK) outside the installation directory of Android Studio, .
Flutter: Android SDK not found at this location,Android Studio not found at xxx
Today, a netizen configures the Flutter development environment, I have installed Android Studio, configured Android environment variable, and then use Flutter Doctor to prompt the following error. co.