Reputation: 444
I am trying to build my Android app in Unity on Ubuntu
, but cannot find Android SDK
.
What is Android SDK
default path on Ubuntu
?
Upvotes: 19
Views: 40227
Reputation: 120
I'm a little late to answer, but this would clarify some of the confusions.
sudo apt install android-sdk
it will be located at /usr/lib/android-sdk/
/home/<AccountName>/Android/Sdk
Note that both these are the paths for Ubuntu
Upvotes: 1
Reputation: 337
If you installed it using sudo apt install android-sdk
it should be in /usr/lib/
.
Upvotes: 4
Reputation: 3478
The Path will be like,
Linux /home/AccountName/Android/Sdk
Upvotes: 34
Reputation: 25798
If you've installed the SDK using:
apt install android-sdk
it is located at /usr/lib/android-sdk
.
Upvotes: 50
Reputation: 61
If you've installed the SDK using the apt install android-sdk
, it is located at /usr/lib/android-sdk
then copy that folder (android-sdk) to your home folder ex: home/username/Android/android-sdk, because /usr/lib/android-sdk will prompt a not writable error..by default there's no Android folder in your home directory so create that folder first then paste inside it the android-sdk folder from /usr/lib
Upvotes: 6
Reputation: 1219
It should be in your home folder under Android/Sdk
folder, i.e., ~/Android/Sdk
Upvotes: 3