Aexyn
Aexyn

Reputation: 1222

Change default save location of projects (or Workspace ) in Android Studio

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

Upvotes: 24

Views: 63647

Answers (4)

Syed Danish Haider
Syed Danish Haider

Reputation: 1384

you can try this:

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

Upvotes: 2

Gene
Gene

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

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

Upvotes: 5

Umesh
Umesh

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

Paul Verest
Paul Verest

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

Related Questions