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

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

ruby on rails - Seeing duplicate requests handled with Unicorn -