Reputation: 1222
How to Change default save location of projects in Android Studio? Is there anything like workspaces in Android Studio too
Upvotes: 24
Views: 63647
Reputation: 1384
you can try this:
Import any the project from your desired location. That desired location will be set your workspace
Upvotes: 2
Reputation: 11285
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
3) Android Application
Android Studio=
Eclipse= In Eclipse, the Android App is shown alongside all your other apps. Android Studio doesn't do that.
Upvotes: 5
Reputation: 1609
Create new project -> Select Project Location
Care to be taken that there should not be any blank space in Project Location Path.
Upvotes: 2
Reputation: 63972
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
Upvotes: 7