How To Uninstall Android Studio Completely

Summarize this article with:

Dragging Android Studio to the trash doesn’t actually remove it. Not even close.

The IDE leaves behind gigabytes of SDK files, Gradle caches, emulator images, and configuration folders scattered across your system. These leftover files slow down your computer and cause conflicts during reinstallation.

Learning how to uninstall Android Studio completely requires cleaning multiple hidden directories that the standard uninstaller ignores.

This guide covers complete removal for Windows, macOS, and Linux. You’ll find exact file paths, terminal commands, and verification steps to confirm everything is gone.

Total time needed: 15-30 minutes depending on your operating system.

How to Uninstall Android Studio

maxresdefault How To Uninstall Android Studio Completely

Uninstalling Android Studio is the process of removing Google’s official integrated development environment from your computer, including all associated SDK files, cache folders, and configuration data.

Users need this when switching to alternative mobile app development tools, fixing corrupted installations, or freeing up disk space.

This guide covers complete removal across Windows, macOS, and Linux systems. Expect 15-30 minutes depending on your operating system.

Prerequisites

Before starting the uninstallation process, confirm you have the following:

Why does Android dominate the mobile world?

Uncover Android development statistics: market share dominance, developer opportunities, ecosystem growth, and mobile innovation trends.

Explore Android Insights →
  • Operating system: Windows 10/11, macOS Monterey or later, Ubuntu 20.04+
  • Administrator access: Required for deleting system folders and registry entries
  • Time estimate: 15-30 minutes for complete removal
  • File Explorer or Terminal access: Needed for manual cleanup of leftover files
  • Backup of project files: Optional but recommended if you plan to reinstall later

Close Android Studio completely before proceeding. Check Task Manager (Windows) or Activity Monitor (Mac) to confirm no background processes are running.

How Do You Back Up Your Android Studio Settings Before Uninstalling?

Export your IDE settings through File > Manage IDE Settings > Export Settings to create a configuration archive containing keymaps, code styles, and plugin preferences.

Action:

  1. Open Android Studio and navigate to File > Manage IDE Settings > Export Settings
  2. Select all components you want to preserve (keymaps, templates, plugins)
  3. Choose a save location outside the Android Studio directory
  4. Click OK to generate the .zip settings file

This backup lets you restore your development environment after a fresh Android Studio installation.

For Windows Users

How Do You Uninstall Android Studio Through Control Panel?

Access Windows Control Panel, locate Android Studio in the programs list, and run the built-in uninstaller to remove the main application and optionally the user settings folder.

Action:

  1. Control Panel > Programs > Uninstall a Program: Find Android Studio in the list
  2. Double-click Android Studio: Confirm the uninstallation prompt
  3. Check both boxes: Select “Android Studio” and “Android User Settings” for complete removal
  4. Click Uninstall: Wait for the process to finish

The standard uninstaller removes the main program but leaves behind configuration files, Gradle cache, and SDK folders.

How Do You Delete Android Studio User Configuration Files on Windows?

Navigate to your user profile folder and manually delete hidden directories containing IDE settings, virtual device data, and JetBrains configuration files that persist after standard uninstallation.

Action:

  1. Open File Explorer: Type %USERPROFILE% in the address bar and press Enter
  2. Delete these folders:
  • .android (SDK caches and AVD data)
  • .AndroidStudio (all version folders)
  • .gradle (build cache)
  • .m2 (Maven repository, if present)

3. Navigate to %APPDATA%: Delete the JetBrains folder

These hidden folders can consume several gigabytes. Removing them ensures a clean slate for future Android development setups.

How Do You Remove the Android SDK Folder on Windows?

Delete the Android SDK directory from AppDataLocal to reclaim disk space occupied by platform tools, build tools, system images, and emulator files.

Action:

  1. Open File Explorer: Go to C:Users[Username]AppDataLocalAndroid
  2. Delete the Sdk folder: This contains all downloaded Android SDK tools and system images
  3. Empty Recycle Bin: Permanently remove the files to free disk space

The SDK folder typically occupies 10-50 GB depending on how many platform versions and emulator images you downloaded.

For macOS Users

How Do You Delete the Android Studio Application on Mac?

Remove the Android Studio application bundle from the Applications folder using Finder or Terminal commands to initiate the uninstallation process.

Action:

  1. Open Finder: Navigate to Applications folder
  2. Drag Android Studio to Trash: Or right-click and select Move to Trash
  3. Alternative Terminal command: rm -Rf /Applications/Android Studio.app

Dragging to Trash only removes the main application. Dozens of support files remain scattered across Library folders.

How Do You Remove Android Studio Preferences and Cache Files on Mac?

Execute Terminal commands to delete preference files, application support data, cache directories, and log files from multiple Library locations that macOS preserves after app removal.

Action:

Open Terminal and run these commands:

rm -Rf ~/Library/Preferences/AndroidStudio rm -Rf ~/Library/Preferences/com.google.android. rm -Rf ~/Library/Application Support/AndroidStudio rm -Rf ~/Library/Caches/AndroidStudio rm -Rf ~/Library/Logs/AndroidStudio `

These leftover files accumulate over time. Older Android Studio versions create separate preference folders that require individual deletion.

How Do You Delete the Android SDK and AVD Files on Mac?

Remove the hidden .android directory, Library Android folder, and emulator authentication token to complete the cleanup of all development environment files.

Action:

  1. Delete SDK and AVD data: rm -Rf ~/.android
  2. Remove Library Android folder: rm -Rf ~/Library/Android
  3. Delete emulator token: rm ~/.emulatorconsoleauth_token
  4. Optional – Remove Gradle: rm -Rf ~/.gradle (keep if other projects use it)

The .android folder contains your Android Virtual Devices and debug keystores. Back up any signing keys before deletion if you need them for future APK builds.

For Linux Users

How Do You Uninstall Android Studio Using Package Manager on Linux?

Run the appropriate package manager command for your distribution, or manually delete the installation directory if you installed Android Studio from the official archive.

Action:

  • Ubuntu/Debian: sudo apt remove android-studio
  • Fedora: sudo dnf remove android-studio
  • Manual installation: sudo rm -rf /opt/android-studio
  • Snap install: sudo snap remove android-studio

Remove the desktop entry: rm ~/.local/share/applications/android-studio.desktop

How Do You Remove Android Studio Configuration Files on Linux?

Delete hidden configuration directories from your home folder to remove IDE settings, Gradle cache, and virtual device data that persist after uninstallation.

Action:

Run these terminal commands:

` rm -rf ~/.AndroidStudio rm -rf ~/.android rm -rf ~/.gradle rm -rf ~/Android rm -rf ~/.local/share/Google/AndroidStudio `

The ~/.gradle folder may be needed by other Java projects. Keep it if you work with Kotlin or Java outside Android Studio.

Verification

How Do You Confirm Android Studio Is Completely Removed?

Search your system for remaining Android Studio files and check disk space recovery to verify the uninstallation removed all components.

Windows verification:

  1. Open File Explorer and search for “AndroidStudio” across all drives
  2. Check %APPDATA% and %LOCALAPPDATA% for remaining folders
  3. Open Registry Editor (regedit) and search for “Android Studio” entries

macOS verification:

  1. Open Finder and press Cmd+Shift+G, then search ~/Library for "Android"
  2. Check disk space in About This Mac > Storage
  3. Run: find ~ -name “AndroidStudio*” 2>/dev/null

Linux verification:

  1. Run: locate android-studio (update database first with sudo updatedb)
  2. Check: df -h to confirm disk space recovery

A complete removal typically frees 10-50 GB depending on SDK components and emulator images.

Troubleshooting

Issue: Uninstaller Fails to Run or Freezes

Solution:

  1. Open Task Manager (Ctrl+Shift+Esc on Windows) or Activity Monitor (Mac)
  2. End all processes containing “studio” or “java”
  3. Boot into Safe Mode (Windows) or Recovery Mode (macOS) for stubborn installations
  4. Try third-party tools like Revo Uninstaller (Windows) or clearing cache manually

Issue: Permission Denied When Deleting Folders

Solution:

  • Windows: Right-click folder > Properties > Security > Edit > Grant Full Control to your user
  • macOS/Linux: Prefix commands with sudo for administrator privileges
  • Locked files: Restart your computer and try deletion before opening other applications

Some antivirus software locks development folders. Temporarily disable protection if needed.

Issue: Files Remain After Standard Uninstallation

Solution:

  1. Use the manual deletion paths listed in the platform-specific sections above
  2. Search for hidden files: enable “Show hidden files” in File Explorer or Finder
  3. Check multiple user profiles if the computer has shared accounts
  4. Look in custom installation directories if you changed the default location

The Android Studio IDE creates files across multiple locations. Manual cleanup catches what the uninstaller misses.

Related Processes

After removing Android Studio, you might need these related guides:

Looking for alternatives? Compare IntelliJ IDEA vs Android Studio or Eclipse vs Android Studio to find the right development IDE for your workflow.

For broader mobile application development, explore cross-platform development tools like Flutter or React Native that work across iOS and Android.

FAQ on How To Uninstall Android Studio

Does uninstalling Android Studio delete my projects?

No. Your project files stay in the AndroidStudioProjects folder unless you manually delete them. The uninstaller only removes the IDE application and optionally the user settings. Back up important projects before cleanup if you want to keep them.

How do I completely remove Android Studio from Windows?

Use Control Panel to uninstall the main program. Then manually delete folders in %USERPROFILE% including .android, .AndroidStudio, .gradle, and the SDK folder in AppDataLocalAndroid. Remove JetBrains entries from %APPDATA% too.

Why does Android Studio take up so much space after uninstalling?

The standard uninstaller leaves behind SDK files, emulator system images, Gradle cache, and AVD data. These components often exceed 20 GB combined. Manual deletion of hidden configuration folders is required for complete removal.

Can I keep the Android SDK after uninstalling Android Studio?

Yes. Skip deleting the SDK folder during cleanup. Other tools like build automation tools and command-line development workflows can use the existing SDK. Just note the SDK path before uninstalling.

How do I uninstall Android Studio on Mac using Terminal?

Run rm -Rf /Applications/Android Studio.app first. Then delete Library folders: Preferences, Application Support, Caches, and Logs containing AndroidStudio. Remove ~/.android and ~/.gradle directories to complete the clean uninstall.

Will uninstalling Android Studio affect other JetBrains products?

No. Each JetBrains IDE maintains separate configuration directories. IntelliJ IDEA, WebStorm, and PyCharm remain unaffected. Shared JDK installations also stay intact unless you explicitly remove them during manual cleanup.

How do I remove Android Studio emulator files?

Delete the .android folder in your user directory. This contains all Android Virtual Devices and their disk images. On Mac, also remove ~/Library/Android and the emulator authentication token file.

What happens to Gradle cache after uninstalling?

The .gradle folder persists in your home directory. It contains downloaded dependencies used by Android projects. Delete it to free space, but keep it if you use Gradle for other software development projects.

Can I reinstall Android Studio after complete removal?

Yes. A clean removal actually helps fresh installations work better. Download the latest version from Google’s developer site. Import your backed-up settings file to restore keymaps, code styles, and plugin configurations quickly.

How do I fix Android Studio if uninstalling doesn’t work?

Boot into Safe Mode and try again. Use Task Manager to kill all Java and Studio processes first. Third-party tools like Revo Uninstaller can force removal. As a last resort, manually delete all folders listed in this guide.

Conclusion

Knowing how to uninstall Android Studio properly saves you from configuration conflicts and wasted disk space. The standard uninstaller handles only part of the job.

Complete removal requires deleting Gradle caches, Android Virtual Device files, and JetBrains configuration folders manually. Windows users need to clean registry entries and AppData directories. Mac users must clear Library preferences and caches through Terminal or Finder.

The verification step confirms nothing got left behind. Search your system for remaining AndroidStudio folders before calling it done.

A clean removal frees 10-50 GB depending on your SDK and emulator setup. That’s significant disk space recovery for most development machines.

Fresh installations work better on clean systems. Take the extra 15 minutes to do it right.

50218a090dd169a5399b03ee399b27df17d94bb940d98ae3f8daff6c978743c5?s=250&d=mm&r=g How To Uninstall Android Studio Completely
Related Posts