user2504201
user2504201

Reputation: 691

How to Clear Recent Projects List in Android Studio?

Is there any way to clear Recent Projects in Android Studio 0.1.1 ?

Upvotes: 59

Views: 28452

Answers (9)

CodeToLife
CodeToLife

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

mallem mahesh
mallem mahesh

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

Srinivasan
Srinivasan

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.enter image description here

Upvotes: 4

Muhammad Asif
Muhammad Asif

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

Fausto Checa
Fausto Checa

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

Boundless
Boundless

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

Clara
Clara

Reputation: 149

On Mac OS X :

  1. On "Welcome to Android Studio" Screen

  2. On the Right Side List "Recent Projects" just hover over the Project you want to clear (do not click)

  3. Now press Delete, thats it!

Find Source here

Upvotes: 14

user3179958
user3179958

Reputation: 371

Focus on the list > Ctrl+A > Del > OK.

Upvotes: 37

Androiderson
Androiderson

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

Related Questions