Reputation: 7037
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.
Upvotes: 113
Views: 308243
Reputation: 1065
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.
Upvotes: 95
Reputation: 999
The latest Android Studio 4.1.3 is currently located: C:\Users\User\AndroidStudioProjects
Upvotes: 0
Reputation: 67
Top of The Android Studio Title bar its shows the complete file path or Location
Upvotes: 3
Reputation: 41
Upvotes: 4
Reputation: 31
This worked for me Android Studio 4.0.1:
Close Android Studio.
Navigate to C:\Users[Username].AndroidStudio4.0\config\options
Locate recentProjects.xml and open it.
Scroll down the page you will notice: <option name="lastProjectLocation" value="$USER_HOME$/AndroidStudioProjects" />
Change $USER_HOME$/AndroidStudioProjects to your desired location: /home/USER/AndroidStudioProjects/
Reopen Android studio.
Upvotes: 0
Reputation: 531
This may be what you want. Settings -> Appearance & Behavior -> System Settings > Project Opening > Default Directory
It worked for me. I tried Android Studio 3.5.
Upvotes: 43
Reputation: 1
Try this:
File\Other Settings\Preferences
for New Projects\Teminal\Start Directory
Upvotes: 0
Reputation: 411
I have Android Studio version 3.1.2, it shows project full path when you click Build tab in bottom-left location of the studio.
Upvotes: 0
Reputation: 11
File -> Other Settings -> Default settings... -> Terminal --> Project setting --> Start Directory --> ("Browse or Set Your Project Directory Path")
Now Close current Project and Start New Project Then Let Your eyes see Project Location
Upvotes: 1
Reputation: 2289
In android studio 2.3.3 (windows) you must go to C:\User\ (Name)\ .AndroidStudio2.3\config\option open recentProjects.xml And change your directory
<option name="lastProjectLocation" value="YOUR DIRECTORY" />
Upvotes: 12
Reputation: 185
I found an easy way:
Upvotes: 11