需要一个关于在另一个cn1lib中包含外部cn1lib类的示例

时间:2016-03-24 23:23:53

标签: codenameone

虽然cn1libs不能嵌套但是Shai Almog说可以创建第一个使用第一个cn1lib并从第二个引用的项目。有关于如何做到这一点的具体例子吗?

1 个答案:

答案 0 :(得分:0)

我没有像实际运行那样的东西,但你可能只需编辑cn1lib中的jar任务,也可以包含来自其他cn1lib的类:

<target name="jar" depends="compile,Stubs">
    <ant inheritall="false" antfile="pathtoothercn1lib/build.xml" target="jar" />
    <copydir src="pathtoothercn1lib/build" to="build" />
   ...
</target>