aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--eclipse/changes.txt2
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/Sdk.java3
2 files changed, 1 insertions, 4 deletions
diff --git a/eclipse/changes.txt b/eclipse/changes.txt
index d3bab15..661faeb 100644
--- a/eclipse/changes.txt
+++ b/eclipse/changes.txt
@@ -1,8 +1,8 @@
0.9.8:
+- New Action "Rename Application Package" (under the "Android Tools" contextual menu) will do a full application package refatoring.
- Fixed issue with library project names containing characters that aren't compatible with Eclipse path variable. The link between the main project and the library would fail to create.
- Added support for library projects that don't have a source folder called "src". There is now support for any number of source folder, with no name restriction. They can even be in sub folder such as "src/java".
- Added support for libraries with library dependencies.
-- Library source folders linked into the main project are now properly set as derived to be ignored by Team plug-ins.
- added support for new resource qualifiers: car/desk, night/notnight and navexposed/navhidden
- added more device screen types for the layout editor. All screen resolution/density combinations from http://developer.android.com/guide/practices/screens_support.html#range is now available.
diff --git a/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/Sdk.java b/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/Sdk.java
index 4d6f784..321b934 100644
--- a/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/Sdk.java
+++ b/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/Sdk.java
@@ -1373,9 +1373,6 @@ public final class Sdk {
// representing the library project, followed by the source folder name.
libSrc.createLink(linkedPath, IResource.REPLACE, monitor);
- // mark it as derived so that Team plug-in ignore this
- libSrc.setDerived(true);
-
// set some persistent properties on it to know that it was
// created by ADT.
ProjectHelper.saveStringProperty(libSrc, PROP_CREATOR, CREATOR_ADT);