I cannot find a way to prevent Android Studio from automatically loading the last project in use. I want it open me the beggining window with the list of projects available and not loading the last used automatically.
-
Accept the answer if that works for you. – Pooja Apr 28 '15 at 08:58
-
2This is the worst design yet again brought to us by Google. Automatic project open as if they know what's better for us. Why not also develop an Automagic Programming so Android Studio would make app for us automagically? Make everything on this IDE automatic. That sounds fun! – Neon Warge Oct 07 '16 at 14:36
-
I wish I could start AS without opening a project at all. I update studio when I'm not in the middle of a project (don't want to chance an update breaking what's due in the next hour!). Opening a project to open studio to apply updates is tedious and time consuming – mister270 Mar 22 '17 at 16:25
-
Yeah, it's one of the most stupid default behaviors I've seen in my entire IT career. What the hell Google developers were thinking when setting this behavior as the default? – Saeed Neamati Jun 24 '18 at 06:52
-
In 2020 still agree. Not sure if there is work around today, but don't see one. I end up choosing a smaller project to minimize the load time. Sigh.... – Ben Apr 19 '20 at 11:58
6 Answers
The location of Reopen last project on startup
was moved to Settings
=> Appearance & Behavior
=> System Settings
with new Android Studio, just uncheck it!

- 1,521
- 13
- 18
In Appearance & Behavior -> System Setting , also you can change some other setting about open or save projects
Android Studio 2.1.1 MacOS X
UPDATE
This screen can accessed in Android Studio 3.1.3 on MacOS High Sierra by selecting the Android Studio -> Preferences menu

- 6,444
- 1
- 32
- 44

- 3,542
- 1
- 34
- 38
-
An update: This screen can accessed in Android Studio 3.1.3 on macOs High Sierra by selecting the `Android Studio -> Preferences` menu (Near to the Apple logo). Updated the original post as well – sunil Apr 03 '19 at 07:12
-
@sunil please read https://meta.stackoverflow.com/questions/254990/when-should-code-formatting-be-used-for-non-code-text – Zoe Apr 03 '19 at 08:04
-
@Zoe I was not aware about this. Thanks for letting me know. However, there should be a way the sections in the post be identifiable to readers. You could have used **Bold** instead of removing **Code** sections – sunil Apr 03 '19 at 09:15
-
Android Studio or Intellij IDEA:
From the menu go to :
File
> Settings >Appearence & Behavior
> System Settings
.
disable the option:
Reopen last project on startup

- 124,308
- 23
- 334
- 268
Open Settings
, go to General
and remove check from Reopen last project on startup

- 4,950
- 3
- 32
- 46
If the project that is being reopened is causing android studio to stop responding you may not be able to get to the dialog. I got round this by deleting
~/Library/Preferences/AndroidStudio3.3/options/recentProjects.xml
This allowed me to temporarily start android studio without reopening the offending project, and then permanently disable the reopening feature using the dialog others have mentioned

- 388
- 2
- 7
-
3I had the same issue, but on windows. For those who's having the same problem, the windows path should be similar as follow: C:\Users\xxx\AppData\Roaming\Google\AndroidStudio4.1\options\recentProjects.xml – programmer dreamer Nov 09 '20 at 01:25
I ran into this problem on MacOS when I added Android Studio Canary and Intellij. I'm not sure which caused the issue.
Anyway, here's the steps that I used to fix it:
- Open Android Studio to see what project it opens; write down that project.
- It will freeze, so you need to force quit it.
- Erase the nodes where that project name exists. For me it was the last
<entry>
element and the<option>
element in the recentProjects.xml file (location below). Make sure you delete the complete element! - Restart and it should work. Otherwise, repeat for the new recently opened project that is freezing Android Studio.
Where is the file?
- ~Library/Application Support/Google/AndroidStudio4.1/options
It took me digging up the location of Intellij files then back tracking it to Google then Android Studio to find where the file exists. I hope I save someone the time I wasted on this. :D
Extra note:
The <entry>
node is in here:
<application>
<component name="RecentProjectsManager">
<option name="additionalInfo">
<map>

- 5,215
- 1
- 36
- 39