M BUZZ CRAZE NEWS
// general

How to uninstall adroid-sdk from Ubuntu

By Mia Morrison

to install the android sdk on linux I typed:

$ sudo snap install androidsdk

which should have been:

$ sudo snap install android-sdk

Now I cant remove it with:

$ sudo snap remove android-sdk

Does anyone know what to do? Is there a possibility that it is a virus?

4

1 Answer

There is no android-sdk snap package so you couldn't have installed it as running the snap list command will verify.

The androidsdk snap package contains android sdkmanager and android SDK console tools. To uninstall the Android SDK snap open the terminal and type:

sudo snap remove androidsdk

For reference purposes this is how you might have installed the latest version of Android SDK in Android Studio.

  1. Select Tools -> SDK Manager.
  2. In the SDK Platforms tab, select Android 12.
  3. In the SDK Tools tab, select Android SDK Build-Tools 31.
  4. Click OK to install the SDK.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy