23

How to Change default save location of projects in Android Studio? Is there anything like workspaces in Android Studio too

Aexyn
  • 1,212
  • 2
  • 13
  • 30
  • Related post - [Android Studio: Default project directory](https://stackoverflow.com/q/17800615/465053) – RBT Aug 08 '18 at 12:56

4 Answers4

7

It's simpler: if you create a project at, say /home/USER/Projects/AndroidStudio/MyApplication from there on all new projects will default to /home/USER/Projects/AndroidStudio.

Android Studio: Default project directory

Community
  • 1
  • 1
Paul Verest
  • 60,022
  • 51
  • 208
  • 332
5

In Intellij/Android Studio, the project itself stores the directory of it's own location. In Eclipse, the IDE itself stores the directory of the projects.

Here's some comparisons between Android Studio and Eclipse:

1) Workspace

Android Studio= C:\Users\582767\AndroidStudioProjects

Eclipse= C:\Users\582767\workspace

2) Package Explorer

Android Studio= Doesn't have one

Eclipse= Has it in the IDE

enter image description here

3) Android Application

Android Studio=

enter image description here

Eclipse= In Eclipse, the Android App is shown alongside all your other apps. Android Studio doesn't do that.

enter image description here

Gene
  • 10,819
  • 1
  • 66
  • 58
2
Create new project -> Select Project Location

Care to be taken that there should not be any blank space in Project Location Path.

Umesh
  • 1,609
  • 1
  • 17
  • 28
2

you can try this:

Import any the project from your desired location. That desired location will be set your workspace

Robert
  • 5,278
  • 43
  • 65
  • 115
Syed Danish Haider
  • 1,334
  • 11
  • 15