diff options
author | Xavier Ducrohet <xav@android.com> | 2011-02-14 15:52:12 -0800 |
---|---|---|
committer | Xavier Ducrohet <xav@android.com> | 2011-08-17 16:09:14 -0700 |
commit | babf25ca7162849f0145f75be1b6c09b359b122c (patch) | |
tree | c03538b2c6bc29e507b42d35cfe4642a804fed93 /testapps/basicProjectWithAidl | |
parent | 168e27a3d37e983726a82e66950f03926e7ea52f (diff) | |
download | sdk-babf25ca7162849f0145f75be1b6c09b359b122c.zip sdk-babf25ca7162849f0145f75be1b6c09b359b122c.tar.gz sdk-babf25ca7162849f0145f75be1b6c09b359b122c.tar.bz2 |
New library project mechanism.
Libraries now generate a jar file that is used by the projects
referencing them, instead of having the main projects compile
the library source code themselves.
This means we can remove the link mechanism that created linked
folder in ADT and instead use a container that is lazily initalized
to be all the jar files of the libraries.
Also merged all 3 Ant build files (main_rules, lib_rules, test_rules)
into a single build.xml that can build any kind of projects.
Lot's of improvement in there too. Much cleaner.
Change-Id: I98307e25cd76722e8595938528e6ef57a7e226ad
Diffstat (limited to 'testapps/basicProjectWithAidl')
-rw-r--r-- | testapps/basicProjectWithAidl/.classpath | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testapps/basicProjectWithAidl/.classpath b/testapps/basicProjectWithAidl/.classpath index 609aa00..765e549 100644 --- a/testapps/basicProjectWithAidl/.classpath +++ b/testapps/basicProjectWithAidl/.classpath @@ -3,5 +3,6 @@ <classpathentry kind="src" path="src"/> <classpathentry kind="src" path="gen"/> <classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/> + <classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/> <classpathentry kind="output" path="bin"/> </classpath> |