Android Studio에서 프로젝트 제거
Eclipse에서 프로젝트를 다시 내보내기 위해 Android Studio에서 프로젝트를 제거하는 방법을 아는 사람이 있습니까?
지금까지 프로젝트와 관련된 모든 gradle 파일을 제거하려고 시도했지만 Android Studio가 내 프로젝트를 열려고 할 때 오류가 발생합니다.
이 파일은 이동되지 않은 프로젝트 만 가져 왔기 때문에 AndriodStudioProjects 폴더에 없습니다 ....
기본적으로 내가 달성하고 싶은 것은 Android Studio의 최근 프로젝트 목록에서 파일을 제거하고 Eclipse에서 다시 내 보낸 다음 작업중인 프로젝트를 Android Studio로 다시 가져 오는 것입니다.
파일> 프로젝트 닫기
프로젝트에서 마우스 커서를 이동하고 키보드 삭제 버튼을 누릅니다. :)
이 솔루션을 시도해보십시오 .
Android Studio 1.0.2 (Windows7) 용입니다. 프로젝트 표시 줄에서 프로젝트를 마우스 오른쪽 버튼으로 클릭하고 삭제합니다.
그런 다음 Windows 탐색기를 사용하여 'AndroidStudioProject'아래의 사용자 폴더에서 프로젝트 폴더를 제거하십시오.
스튜디오를 닫고 다시 시작하면 시작 화면이 표시됩니다. 왼쪽 창에서 삭제 된 프로젝트를 클릭 한 다음 목록에서 제거 할 옵션을 선택합니다. 끝난!
"Welcome to Android Studio"열기 대화 상자에서 Android Studio에서 제거 할 앱을 강조 표시하고 키보드에서 delete를 누를 수 있습니다.
프로젝트를 닫고 시작 화면에서 프로젝트 위로 마우스를 가져간 다음 삭제 버튼을 눌러야합니다.
Android 프로젝트 디렉토리로 이동하십시오.
C:\Users\HP\AndroidStudioProjects
삭제해야 할 항목을 삭제하십시오.
Android Studio 다시 시작
The project can be removed from the "recent project" list but it will still remain in the project directory. To remove from the project list:
- Close the project
- Highlight the project in the "recent project" list
- Press Backspace (NOT Delete!)
To completely remove the project:
- List item
- Use Windows File Explorer to navigate to the Android Studio project directory (normally in "x:\Users\YourName\AndroidStudioProjects")
- Select the project to delete
- Press Delete (NOT Backspace!)
Found this elsewhere on the web, 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 your project folder and check all the files were deleted.
MAKE IT SIMPLE
- Open Project
- Go to AndroidStudioProjects Folder
- Right click on the project name to delete
- click Delete
Easiest way to do this is close the project. Using file explorer head to the location of that project and delete.
Alot of processes, even simply deleting can be annoying to figure out in studio. Most deleting options a good work around is to delete using file explorer. This is a part of the process tht works for deleting modules as well. Which u will prob find is painful as well
Select your project in the projects window > File > Project Structure > (in the Modules section) select your project and click the minus button.
I had to remove my project from eclipse entirely. To do so I copied the folder of my project in workspace and pasted it onto my desktop. Then navigated back into eclipse right clicked selected delete and then check the box to delete the project from my workspace.
After this I closed eclipse. Opened Android studio and tried to open my imported project. At this point it told me the project didn't exist and provided me with an option to remove it from the list. After clicking this i closed Android Studio, and when i reopened it the project was gone.
Finally, I reopened eclipse and imported my project from existing sources to get it back inside eclipse.
NOTE
I would advise against using Android Studio on projects that you have that already work fine with eclipse. Android studio is cool when you are creating new projects but from my experience there are a lot of problems with build paths when I import a build.gradle from eclipse to Android Studio. Android Studio is great but remember it is still in the I/O pre-release!!!
--Just my 2 cents!
@Pacific P. Regmi가 제안한대로 삭제 / 잘라내기를 시도하고 삭제 / 잘라내기를 허용하지 않는 "폴더 사용 중"이 표시되는 경우 모든 Android 스튜디오 인스턴스를 닫아야합니다.
또는 빌드하지 않으려면 settings.gradle
파일 에서 제거 하십시오.
의 위치 SDK
가 올바르지 않습니다. 한 파일러의 이름이 문제를 일으키는 장소입니다. 그 공간을 제거하면 문제가 해결됩니다. 이전 SDK
위치 :
C:\Users\At Tech\AppData\Local\Android\Sdk
새 SDK
위치 :
F:\AndroidSDK\Sdk
참고 URL : https://stackoverflow.com/questions/17073108/remove-project-from-android-studio
'programing tip' 카테고리의 다른 글
하위 도메인없이 유효한 도메인 이름과 일치하는 정규 표현식은 무엇입니까? (0) | 2020.08.16 |
---|---|
ASP.NET MVC 성능 (0) | 2020.08.16 |
이미 존재하는 문자열에 어떻게 추가합니까? (0) | 2020.08.16 |
주요 SQL 데이터베이스에서 CREATE TABLE 및 ALTER TABLE 문을 롤백 할 수 있습니까? (0) | 2020.08.15 |
모호한 일치 예외 방지 (0) | 2020.08.15 |