To set up a minimal SDK installation without Android Studio, here's what I did:
mkdir ~/sdk
cd ~/sdk
wget https://dl.google.com/android/repository/tools_r25.2.5-linux.zip
unzip tools_r25.2.5-linux.zip
After successfully unpacking the zip file, I'm having a problem while updating:
tools/bin/sdkmanager --update
I get the following:
Warning: File /home/xxxx/.android/repositories.cfg could not be loaded.
done
I was hoping to get some assistance with this. Thank you.
New-Item C:\Users\username\.android\repositories.cfg -type file– smilebomb Oct 19 '17 at 22:46sdkmanagerlooks for getting files. – Masked Man Nov 27 '17 at 09:34New-Item ~\.android\repositories.cfg -Force– Der_Meister Jul 18 '19 at 21:56