android - Using external source folders -
i have codenameone project configured linked external source folder. java sources in external folder not being included in android builds. how fix include external sources.
it works fine in simulator environment.
one way add additional src line build.xml
<javac destdir="build/tmp" compiler="modern" source="1.5" target="1.5" bootclasspath="lib/cldc11.jar" classpath="lib/codenameone.jar:${build.classes.dir}:lib/impl/cls"> <src path="src"/> <src path="../whereever/src"/> </javac>
Comments
Post a Comment