5

I've installed Android SDK like so:

sudo apt-get install android-sdk

Now what? How do I start anything? Searching for "Android" doesn't show anything in Gnome Activities. What did installing android-sdk even do if there's nothing to run? I do see adb at the command line, but that's all.

trusktr
  • 162
  • 1
  • 10
  • The location of the Android SDK Manager is /tools/android. From a terminal, change to that directory and type ./android – ubfan1 Dec 20 '17 at 03:41
  • Unfortunately, looks like the `android-sdk` package for Ubuntu does not come with any `android` file. – trusktr Dec 20 '17 at 03:48
  • I don't know what the package includes, but you can download the sdk tools directly from https://developer.android.com/studio/index.html. From that, you can select which versions you want (for space reasons) to download. – ubfan1 Dec 20 '17 at 04:02
  • no sdkmanager to be found anywhere – Reinsbrain May 09 '20 at 08:19

2 Answers2

1

Old question, but whatever. I stumbled on the same problem and maybe someone can contribute to make it a bit better for whoever comes next.

The android-sdk manager does not give you anything to start from, if not the basic libraries and few tools to work with Android (like adb).

If you are at this point and don't know what's what, you might want to stop and read a bit more on how the Android development and ecosystem works: using Android Studio (the IDE based on IntellijIDEA) could be a good starting point.

The sdkmanager is (now) part of a different package and it doesn't seem to be shipped through the repos (I guess license issue? or they don't care to package it for debian/ubuntu). You need to download and install it separately from the official android website.

Mr Peach
  • 111
  • 2
0

The way I did it was switching into my directory:

android-studio/bin 

Then running the following bash command:

./studio.sh
Eliah Kagan
  • 116,445
  • 54
  • 318
  • 493