Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to build an app (let's call it android-app) with a dependency on an SDK (let's call it sdk) via Ant. Eclipse is not installed on this computer (for reasoning, it's a CI box with Jenkins).

Both projects are in two completely separate directories side by side. android-app is in the directory ~/.jenkins/jobs/android-app/workspace and sdk is in the directory ~/.jenkins/jobs/sdk/workspace.

Let's assume both projects are "vanilla" and have not been built with Ant before. I cd to the ../android-app/workspace directory and run android update project -p . --library ~/.jenkins/jobs/sdk/workspace which passes. I then cd to the ../sdk/workspace directory and run android update project -p . which also passes.

At this point I cd back to the ../android-app/workspace directory and run ant clean build. It fails with the error:

BUILD FAILED
/path/to/ant/build.xml:440: 
/path/to/sdk/workspace resolve to a path with no project.properties file for 
project /path/to/android-app/workspace

... where /path/to is the full path to the directories. I simplified it here.

If I cd to the sdk workspace and open project.properties, I receive the following:

# ProGuard
proguard.config=proguard.cfg

# Project target.
target=android-10
android.library=true

It does exist. So do all of these files:

ls

So, why is this failing? What am I doing wrong? I tried to provide as many details as possible. Please let me know if I can provide anything additional.

share|improve this question
Does local.properties file contain: sdk.dir={path to your sdkfolder}? – forgivegod Sep 6 '12 at 22:01
Also, check that in your project.properties file you have something like : android.library.reference.1={relative path to shared lib codebase} – forgivegod Sep 6 '12 at 22:07
@forgivegod Yes. sdk.dir=/path/to/android-sdk-macosx – James Sep 6 '12 at 22:55
@forgivegod I am going for an absolute path since they are in two completely different directories. android.library.reference.1=/Users/jamescmartinez/.jenkins/jobs/sdk/workspace – James Sep 6 '12 at 22:56
damn...all that should work. hop onto android chat, perhaps the room can help out better. – forgivegod Sep 7 '12 at 12:37
show 3 more comments

2 Answers

Well, I encounter this problem too.

I use strace to find out what the hell is going on and found that the path you specified in project.properties will be appended with your current folder path as its prefix.

For example, /home/myfolder/project > ant debug

And the library you specified in project.properties is /path/to/library

Then, the path will become /home/myfolder/project/path/to/library

share|improve this answer
So what is the solution in how to fix this? – JPM May 6 at 20:39
In the case above, the solution is to specify the path in project.properties as: ../../../path/to/library – user1957140 May 16 at 7:02
up vote 0 down vote accepted

Just to fill in the answer gap here, my Java version was completely off. I'm super embarrassed.

share|improve this answer
Well that doesn't help as my java version is up to date. – JPM May 7 at 15:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.