Reputation: 691
Is there any way to clear Recent Projects in Android Studio 0.1.1 ?
Upvotes: 59
Views: 28452
Reputation: 4151
In new Android Studio 2018
this feature is made even better
File -> Open recent
and at the de-e-ep bottom of the showed up projects list, please activate: ->Manage projects
Now you are able to delete any of them on your choice by clicking on crosses of the items.
Upvotes: 23
Reputation: 11
step :1 File -> Close project ->
the left side we have all recent projects Step:2 select single or Multiple projects ->Remove the selection from the welcome screen
Upvotes: 0
Reputation: 4661
On Windows:
Android Studio 2.3.3
File -> Close Project close all the project which is opened now. By close project you will directed to Welcome to Android Studio page with list of projects in the recent list.
Just mouse over the project you want to delete and click the close button to remove the project from recent list.
Upvotes: 4
Reputation: 11
Go to file in Android Studio, hover mouse on "Open Recent" and go to the end of list. At the end, click "Manage Project. A list of projects will be displayed. Select desired project by pressing Control and select the desired projects to be deleted. After selection right click on selected projects and click " Remove Selected from Welcome Screen".
Selection can be done by pressing shift and selecting project on top of the list and clicking at the end of list and remove as stated above.
Upvotes: 1
Reputation: 163
Easiest way, at least with 2.0 and further versions: select the first item and afterwards select the last one on the list, so all of them will slightly change colour, and then right-click mouse and select delete all from the menu.
Upvotes: 0
Reputation: 2464
Note, this solution is for a newer version of Android Studio than the poster requested. I'm adding this solution, since this is the first link that comes up on Google.
I'm running Android Studio 1.5 on Windows 7, and none of the above solutions worked. The only way I was able to remove projects from the recent list was by modifying the recentProjects.xml file. I found it at C:\Users\{user name}\.AndroidStudio1.5\config\options\recentProjects.xml
I just deleted all the option tags of the projects I didn't want. The structure looks like:
<application>
<component name="RecentProjectsManager">
<option name="recentPaths">
<list>
<option value="XXX>
Upvotes: 7
Reputation: 149
On Mac OS X :
On "Welcome to Android Studio" Screen
On the Right Side List "Recent Projects" just hover over the Project you want to clear (do not click)
Now press Delete, thats it!
Find Source here
Upvotes: 14
Reputation: 17083
All at once? No, but you can hover your mouse over the project name e hit Delete
on your keyboard.
UPDATE
I don't know if it existed or was added in the lastests version, but open any project and go to File > Reopen
and select Clear List
. Click OK on the confirmation dialog and next time you open AS the Recent Projects list should be blank.
Upvotes: 93