Andriod Studio For Mac

  1. Android Studio For Mac Download
  2. Android Studio For Mac Os X 10.6.8
  3. Android Studio For Mac Os
  4. Downloading Android Studio

Download android studio mac, android studio mac, android studio mac download free. Android Studio for Mac is a popular software development environment (also known as integrated development environment) that enables programmers and engenders from all around the world direct access to the tools for coding, debugging, performance optimizing, version compatibility checking, hardware compatibility checking (various android. What is Android Studio? The Android Studio is an Android app development software designed to create modern applications and games for mobile devices in the Java environment.

Active7 months ago

I recently downloaded Android Studio on my Macbook Pro and I messed up with it every time I open it. It gives me plugin errors and several other errors. I need to uninstall it completely from my mac. I tried to delete it from my mac and then install it again as if you would do the first time, but it did nothing and now the same problems occur.

How can I manage to remove it completely and install a fresh one again?

Simon
11.6k1 gold badge14 silver badges23 bronze badges
Mostafa AddamMostafa Addam
2,2513 gold badges14 silver badges35 bronze badges

5 Answers

Execute these commands in the terminal (excluding the lines with hashtags - they're comments):

If you would like to delete all projects:

To remove gradle related files (caches & wrapper)

Mac

Use the below command to delete all Android Virtual Devices(AVDs) and keystores.

Note: This folder is used by other Android IDEs as well, so if you still using other IDE you may not want to delete this folder)

To delete Android SDK tools

Emulator Console Auth Token

Thanks to those who commented/improved on this answer!

  1. The flags for rm are case-sensitive1 (as with most other commands), which means that the f flag must be in lower case. However, the r flag can also be capitalised.
  2. The flags for rm can be either combined together or separated. They don't have to be combined.

What the flags indicate

  1. The r flag indicates that the rm command should-

    attempt to remove the file hierarchy rooted in each file argument. - DESCRIPTION section on the manpage for rm (See man rm for more info)

  2. The f flag indicates that the rm command should-

    attempt to remove the files without prompting for confirmation, regardless of the file's permissions. - DESCRIPTION section on the manpage for rm (See man rm for more info)

Edric
9,7887 gold badges40 silver badges54 bronze badges
SimonSimonAndroid studio for mac os
11.6k1 gold badge14 silver badges23 bronze badges

Run the following commands in the terminal:

To delete all projects:

GoZoner
50.4k17 gold badges77 silver badges122 bronze badges
Joseph MathewJoseph Mathew

I was also facing same kind of problem on my Macbook Pro. I took these very simple steps and freshly installed Android Studio.

Android Studio For Mac Download

** Link Contains Images, look if facing any problem.

These Very Simple Steps Can Solve Your Problem.

  1. Type 'Command+option+Space Bar'
  2. Type 'Android Studio'
  3. Click '+' button just below search box.
  4. A new bar will come up 'Kind' is 'any' click on 'kind' --> Others --> search for 'system file' and select that by putting a tick mark.! And click on Ok.
  5. Then select 'are included' from the drop down menu !
  6. Then you get a lot of system file that need to be deleted to complete the fully un-installation of any app.
  7. Click 'command+A' to select all files and take a look on the file remove is some video files are also included. And click 'command + Delete'
  8. Empty your trash. Done
Ankit SinhaAnkit Sinha

Some of the files individually listed by Simon would also be found with something like the following command, but with some additional assurance about thoroughness, and without the recklessness of using rm -rf with wildcards:

Also don't forget about the SDK, which is now separate from the application, and ~/.gradle/ (see vijay's answer).

Android Studio For Mac Os X 10.6.8

RFSTRFST

You may also delete gradle file, if you don't use gradle any where else:

because .gradle folder contains cached artifacts that are no longer needed.

vijayvijay

protected by eyllanescDec 7 '18 at 8:37

Android Studio For Mac Os

Thank you for your interest in this question. Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?

Downloading Android Studio

Not the answer you're looking for? Browse other questions tagged macosandroid-studiouninstall or ask your own question.

Comments are closed.