Finally found the issue.
The new android ant build xml has some differences for the build step.
On the project build xml replace:
Code:
classpathref="android.libraries.jars">
<src path="${source.absolute.dir}" />
<src path="../../shared/android/src" />
<src path="${gen.absolute.dir}" />
<src refid="android.libraries.src" />
for:
Code:
classpathref="project.libraries.jars"> --change here
<src path="${source.absolute.dir}" />
<src path="../../shared/android/src" />
<src path="${gen.absolute.dir}" />
<src refid="project.libraries.src" /> --and here
also i had to change this line:
Code:
<fileset dir="${external.libs.absolute.dir}" includes="*.jar" />
to:
Code:
<fileset dir="./" includes="*.jar" />
so it worked well with barebones...
I wonder if this will work with the other examples..
Bookmarks