I have a a project with a lib inside it. The project has no resource of its own and all the reoources are in the lib
On my build machine I'm using ant to build the project.
Until upgrading to ADT22 build was ok when building both from eclipse and ant.
After the upgrade the build fails for the cases when I modify the main project manifest in the ant build.xml. If I don't modify the manifest in the ant build.xml then the build is passed well. The problem that I see is that in that case R$ files are not generated in my main project but only in my lib project.
Edit:
The problem was because I changed the package name in the manifest during the ant build.
I Have two build.xml files. One for my main project and one for my lib project.
I moved the ant task that modify the package name to the main application build.xml to be the first -compile target depends.
<target name="-compile" depends="-backupFiles,-replaceManifestgName,-build-setup, -pre-build, -code-gen, -pre-compile>
And this fixed my problem.
I guess something in the way ADT22 handle the ant build was change and this is what cause the problem since with previes ADTI didnt Have problems