Delete a project from Android Studio

Does anyone know how to remove a project from Android Studio to re-export it from Eclipse?

So far, I have tried to delete all gradle files associated with the project, which causes an error when Android Studio tries to open my project.

These files were not located in the AndriodStudioProjects folder, because I imported only the project that it did not move ....

Basically, what I would like to do is remove the file from the list of recent projects in Android Studio, re-export it from Eclipse and then import the working project back into Android Studio.

+98
android import android-studio export
Jun 12 '13 at 18:51
source share
14 answers

File> Close Project

move the mouse cursor to the project and click the "Delete Keyboard" button :)

EDIT try this solution works for me

+156
Jun 12
source share

This is for Android Studio 1.0.2 (Windows7). Right-click on the project in the project panel and delete it.

delete from studio

Then delete the project folder from your user folder in the "AndroidStudioProject" section using Windows Explorer.

Close the studio and restart, you will be presented with a welcome screen. Click on the deleted project in the left pane, then select the option to remove from the list. Done!

remove from list

+35
Jan 20 '15 at 6:42
source share

In the "Welcome to Android Studio" dialog box, you can select the application that you want to remove from Android Studio and click "Delete" on the keyboard.

+19
Nov 20 '13 at 20:10
source share

You must close the project, point to the project on the welcome screen, then click the delete button.

+7
Nov 26 '14 at 17:09
source share
  • Go to the Android projects directory

    C:\Users\HP\AndroidStudioProjects 

    Screenshothot

  • Delete which you need to delete

  • Restart Android Studio

+5
Jan 22 '15 at 16:57
source share

The project can be removed from the "last project" list, but it will still remain in the project directory. To remove from the list of projects:

  • Close the project
  • Highlight a project in the recent project list.
  • Click Backspace (NOT Delete!)

To completely delete a project:

  • List item
  • Use Windows File Explorer to go to the Android Studio project directory (usually in "x: \ Users \ YourName \ AndroidStudioProjects")
  • Select a project to delete
  • Click Delete (NOT Backspace!)
+5
Dec 10 '15 at 10:25
source share

Found elsewhere on the Internet, it deletes basically everything (except the workspace.xml file, which you can delete manually from the project folder).

  • Right-click on the project name under the save icon.
  • Click Delete
  • Go to the project folder and make sure that all files have been deleted.

enter image description here

+4
Sep 20 '15 at 11:54
source share

MAKE IT SIMPLE

  • Open project
  • Go to the AndroidStudioProjects folder
  • Right-click the project name to delete
  • click delete

Delete Android Studio Project

+2
Oct 10 '16 at 10:03
source share

The easiest way to do this is to close the project. Using the file archive explorer, delete it and delete it.

Many processes, even simple deletion, can be annoying to sort out in the studio. Most deletion options allow you to work with the file explorer. This is part of a process that also works to remove modules. Which u will prob find also painful

+1
Aug 26 '15 at 10:14
source share

Select the project in the project window> File> Project Structure> (in the "Modules" section) select the project and click the minus button.

+1
Feb 09 '17 at 23:26
source share

I had to completely remove the project from the eclipse. To do this, I copied the folder of my project into the workspace and pasted it onto my desktop. Then, moving back to eclipse, right-click the selected deletion, and then check the box to remove the project from my workspace.

After that I closed the eclipse. Opened Android studio and tried to open my imported project. At the moment, he told me that the project does not exist and gave me the opportunity to remove it from the list. After that, I closed Android Studio, and when I opened it again, the project disappeared.

Finally, I overshadowed eclipse and imported my project from existing sources to bring it back to eclipse.

NOTE

I would suggest using Android Studio for projects that you have that work great with eclipse. Android studio is great when you create new projects, but from my experience there are many problems with build strings when I import build.gradle from eclipse into Android Studio. Android Studio is great, but remember that it is still in pre-release I / O !!!

- Only my 2 cents!

0
Jun 12 '13 at 20:48
source share

If you are trying to delete / cut, as suggested by @Pacific P. Regmi, and if you get a "Folder in use" that will not allow you to delete / cut, be sure to close all instances of Android Studio.

0
Aug 13 '15 at 9:41
source share

Or, if you do not want to create it, just delete it from the settings.gradle file

0
Sep 19 '17 at 12:01 on
source share

Wrong SDK location, single file name is in the place where this creates the problem. Removing this space will solve the problem. old SDK location:

 C:\Users\At Tech\AppData\Local\Android\Sdk 

new SDK location:

 F:\AndroidSDK\Sdk 
0
Jul 08 '19 at 7:16
source share



All Articles