An error occurred during installation
sydyk_0312
#1
Pete.K
#2
@sydyk_0312 from the long list of sdk tools to install, take out the "platform-tools"
one. The Android SDK is trying to update its folder structure, which it can’t do on Windows, because the current process (The CMD) is using it.
Pete.K
#5
The command that you copy-pasted in your terminal, %ANDROID_HOME%\tools\bin\sdkmanager ...
you are essentially starting a program with arguments. One of those arguments is causing the problem, to get past the problem, skip one of the arguments.
%ANDROID_HOME%\tools\bin\sdkmanager" “tools” “platform-tools” “platforms;android-25” “build-tools;25.0.2” “extras;android;m2repository” "extras;google;m2repository
Notice the struck-through platform-tools
, don’t include that in the command and try again.