Android Studio is the official IDE for Android development, used by millions of developers to build, test, and debug Android apps. While it’s generally reliable, some users on Windows 11 have reported issues where Android Studio won’t open, freezes on startup, or crashes unexpectedly shortly after launching.
If that’s happening on your PC, don’t worry — it’s a common problem caused by configuration conflicts, corrupted cache, or incompatible plugins. In this guide, we’ll explain why Android Studio might not open or keeps crashing on your Windows 11 PC and walk you through step-by-step solutions to fix it.
Why Android Studio Fails to Open or Crashes on Windows 11
There are several reasons why Android Studio may refuse to start or suddenly close after launch. Here are the most common causes:
- Corrupted Android Studio cache or configuration files
- Outdated or conflicting plugins
- Damaged SDK or JDK installations
- Insufficient permissions or missing environment variables
- Antivirus or Windows Defender blocking processes
- System compatibility issues after a Windows update
- GPU rendering problems or driver conflicts
Now let’s look at how to resolve each of these issues step-by-step.
Fix 1: Run Android Studio as Administrator
Sometimes, Android Studio fails to launch because it doesn’t have the proper permissions to access system resources. Running it as an administrator often fixes this instantly.
- Press Windows + S and type Android Studio.
- Right-click on it and choose Run as administrator.
- If it opens successfully, you can make it permanent:
- Right-click on the shortcut → Properties → Compatibility tab.
- Check Run this program as an administrator → Apply → OK.
Tip: Always run development tools with admin rights when dealing with SDK updates or AVDs.
Fix 2: Delete Android Studio Cache and Configuration Files
Corrupted cache or configuration files often cause Android Studio to hang on the splash screen or crash immediately. Resetting these files usually solves it.
- Close Android Studio completely.
- Press Windows + R, type:
%AppData%and hit Enter. - Delete the following folders (if they exist):
.android .AndroidStudio* Google JetBrains - Also, delete caches from:
C:\Users\<YourUsername>\.gradle C:\Users\<YourUsername>\.AndroidStudio* - Restart your computer and open Android Studio again.
This forces Android Studio to regenerate clean configuration and cache files.
Fix 3: Disable or Remove Problematic Plugins
If Android Studio opens in Safe Mode but crashes in normal mode, the issue likely lies in a plugin.
To start in Safe Mode:
- Hold Shift while launching Android Studio.
- When prompted, click Disable all third-party plugins.
- Once the IDE opens, go to File → Settings → Plugins.
- Uninstall or disable recently added or unknown plugins.
Then restart Android Studio normally.
Tip: Avoid installing outdated plugins that aren’t compatible with your current Android Studio version.
Fix 4: Delete and Reconfigure the SDK Folder
If your SDK is corrupted or misconfigured, Android Studio may freeze during startup or Gradle sync.
To fix it:
- Go to your SDK folder (default path):
C:\Users\<YourUsername>\AppData\Local\Android\Sdk - Rename it to something like
Sdk_old. - Open Android Studio → it’ll prompt you to set up a new SDK path.
- Let it download a fresh SDK copy from Google’s servers.
Once reinstalled, reopen your project and let Gradle sync again.
Fix 5: Update or Repair the JDK (Java Development Kit)
Android Studio relies on the JDK to run. If your JDK is outdated or missing, the IDE may not start.
To verify JDK installation:
- Open Command Prompt and type:
java -version - If you see an error, download and install the latest JDK from: https://www.oracle.com/java/technologies/javase-downloads.html
- Then set the correct path inside Android Studio:
- Open File → Settings → Build, Execution, Deployment → Build Tools → Gradle.
- Under Gradle JDK, select your installed version (e.g., JDK 21 or JDK 22).
Note: Modern Android Studio versions ship with an embedded JDK, but conflicts may still occur if multiple Java versions are installed.
Fix 6: Disable GPU Rendering
In rare cases, Android Studio’s UI crashes due to GPU hardware acceleration or driver conflicts. You can disable GPU rendering with a simple command-line tweak.
- Press Windows + R, type the following path (adjust version if needed):
"C:\Program Files\Android\Android Studio\bin\studio64.exe" --disable-gpu - Hit Enter and check if Android Studio starts.
If it does, disable GPU rendering permanently:
- Open Help → Edit Custom VM Options.
- Add this line:
-Dsun.java2d.d3d=false - Save and restart Android Studio.
Fix 7: Reset the IDE Configuration
If you’ve tried multiple tweaks and Android Studio still won’t open, a full reset may help.
- Press Windows + R → type:
%UserProfile% - Delete these folders:
.AndroidStudio* .gradle .java - Reopen Android Studio → it’ll create new configuration files from scratch.
This method often fixes corrupted project-level settings.
Fix 8: Check Environment Variables
If Android Studio can’t find Java or SDK tools, it won’t launch properly. Check your system variables:
- Open Control Panel → System → Advanced system settings → Environment Variables.
- Under System Variables, ensure these paths exist:
C:\Program Files\Java\jdk-<version>\bin C:\Users\<YourUsername>\AppData\Local\Android\Sdk\platform-tools - Restart your PC and relaunch Android Studio.
Fix 9: Disable Antivirus or Windows Defender Temporarily
Security software can sometimes block Android Studio components like Gradle or ADB from running.
- Temporarily disable Real-time Protection from Windows Security:
- Open Windows Security → Virus & threat protection → Manage Settings.
- Turn off Real-time protection.
- Restart Android Studio.
- If it opens successfully, add it to your antivirus exclusion list and re-enable protection.
Fix 10: Reinstall Android Studio Completely
If nothing else works, your installation may be corrupted. The cleanest way to fix this is a complete reinstall.
- Uninstall Android Studio via Control Panel → Programs → Uninstall a program.
- Delete leftover folders from:
C:\Program Files\Android\ C:\Users\<YourUsername>\AppData\Local\Google\ C:\Users\<YourUsername>\AppData\Local\Android\ C:\Users\<YourUsername>\.AndroidStudio* - Restart your computer.
- Download the latest Android Studio version from: https://developer.android.com/studio
- Reinstall and run it again.
Tip: Always use the latest version to avoid compatibility issues with SDKs or Windows updates.
Wrapping Up
If Android Studio isn’t opening or keeps crashing on your Windows 11 PC, the problem usually comes down to corrupted files, missing SDK paths, or incompatible settings.
By following this guide — clearing caches, checking environment variables, and reinstalling essential components — you can restore Android Studio to full working condition quickly.
Once it’s up and running, make sure to keep your SDK, plugins, and JDK updated to prevent similar issues in the future.