Where in an Eclipse workspace is the list of projects stored?

Windows: <workspace>\.metadata\.plugins\org.eclipse.core.resources\.projects\ Linux / osx: <workspace>/.metadata/.plugins/org.eclipse.core.resources/.projects/ Your project can exist outside the workspace, but all Eclipse-specific metadata are stored in that org.eclipse.core.resources\.projects directory As noted in the comments by tk421storm, and in Jeegar Patel’s answer: In order for manual changes to take effect, make sure to do File -> Refresh afterwards.

Android Studio 3.0 Compile Issue (Cannot choose between Configurations)

Try implementation project(path: ‘:lp_messaging_sdk’, configuration: ‘default’) Note: You can avoid this bug by update gradle to 4.3 check this. Explanation : Using Dependency Configurations makes it easy to define and specify what to use in sub-project. In my answer, we used default configuration and this will publish and expose only the “release” flavor to other … Read more

Android Studio: Default project directory

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” … Read more