Whenever I create a new project in Android Studio
it wants to put it in a generic default folder at a location something similar to (dependent on OS - Ubuntu here):
/home/USER/AndroidStudioProjects/
I want to change this directory to another location. Besides selecting this new location on the creation of every project, is there a setting (couldn't find) or path variable
(couldn't find any documentation) that can set this directory (say /home/USER/Projects/AndroidStudio/
) as the default?
Something similar to changing the workspace in Eclipse is what I am looking for.
At some point I too tried to do this, but the Android Studio doesn’t work quite like Eclipse does.
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
.
You can also edit ~/.AndroidStudioPreview/config/options/ide.general.xml
(in linux) and change the line that reads <option name="lastProjectLocation" value="$USER_HOME$/AndroidStudioProjects" />
to <option name="lastProjectLocation" value="$USER_HOME$/Projects/AndroidStudio" />
, but be aware that as soon as you create a project anywhere else this will change to that place and all new projects will default to it.
Hope this helps, but the truth is there really isn't much more to it other than what I explained here.
Let me know if you need anything else.