On Thu, Dec 9, 2010 at 3:45 PM, Tobiah <[email protected]> wrote: > I finally came across a post that explained what I was missing. > > I had to create build.properties and add the line: > > external.libs.dir=lib > > which is the directory that contained the .jar file. What's strange > is that once I did that the compiler complained about not being > able to find the 'libs' directory. So I symlinked lib to libs > and everything built ok. Strange.
Actually, you probably could have simply changed the property to point to libs. However, none of this makes sense. I am able to successfully compile and run projects that lack this line in a .properties file, even using the latest build tools. The property in question is defined in rules files imported by your build.xml file -- you should not need to define that yourself. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to *Advanced* Android Development_ Version 1.9 Available! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

