How to change workspace in android?

My current workspace is in the D-drive. I want to change my workspace and create a new workspace on drive C. How do I change the workspace in Android?

+3
source share
5 answers

To change the workspace in Eclipse (since there is no β€œworkspace” for Android), open Eclipse and select:

File> Switch workspace> Other ...

Then select a new location in the workspace. You can copy the settings from the current workspace if you wish.

+13
source

Create a folder anywhere you like using Explorer.

Eclipse : File, Switch Workspace, Other -

+3

, Android SDK eclipse. windows/preference/android SDK, "".

+3

Eclipse, . Workspace Window- > Options- > Workspace.

Eclipse, . ECLIPSE_HOME\configuration.settings, org.eclipse.ui.ide.prefs RECENT_WORKSPACES .

If you want Eclipse to prompt you to select a workspace when it starts, change the value of SHOW_WORKSPACE_SELECTION_DIALOG to true.

And you're done!

+1
source

I highly recommend you create your own start script. When you are on Windows, something like

@echo off
setlocal

rem set your Java settings here (JAVA_HOME and PATH) - setjava is a private script I use
rem call setjava 1.7 -arch x86_64

set ADT_HOME=D:\lang\android\adt-bundle
set ADT_EXEC=%ADT_HOME%\eclipse\eclipse.exe

set WORKSPACE_HOME=%~dp0

start "ADT" /MIN %ADT_EXEC% -data %WORKSPACE_HOME% -showlocation -clean -vmargs -Xmx2048M

endlocal
0
source

Source: https://habr.com/ru/post/1796542/


All Articles