Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/ant/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何使用ant缩小sencha touch项目?_Ant_Sencha Touch 2 - Fatal编程技术网

如何使用ant缩小sencha touch项目?

如何使用ant缩小sencha touch项目?,ant,sencha-touch-2,Ant,Sencha Touch 2,我正在开发sencha touch应用程序。我尝试使用phonegap构建一个本地应用程序。但是触摸库本身占用了超过10MB的空间。是否可以使用ant缩小它?在引擎盖下使用ant缩小应用程序的“构建”目录,然后将其放入PhoneGap 在Touch2.3中,通过Sencha Cmd实现了对PhoneGap的集成。在引擎盖下使用Ant缩小应用程序的“构建”目录,然后可以将其放入PhoneGap 在Touch2.3中,通过Sencha Cmd实现了对PhoneGap的集成。在引擎盖下使用Ant缩小应

我正在开发sencha touch应用程序。我尝试使用phonegap构建一个本地应用程序。但是触摸库本身占用了超过10MB的空间。是否可以使用ant缩小它?

在引擎盖下使用ant缩小应用程序的“构建”目录,然后将其放入PhoneGap

在Touch2.3中,通过Sencha Cmd实现了对PhoneGap的集成。

在引擎盖下使用Ant缩小应用程序的“构建”目录,然后可以将其放入PhoneGap

在Touch2.3中,通过Sencha Cmd实现了对PhoneGap的集成。

在引擎盖下使用Ant缩小应用程序的“构建”目录,然后可以将其放入PhoneGap

在Touch2.3中,通过Sencha Cmd实现了对PhoneGap的集成。

在引擎盖下使用Ant缩小应用程序的“构建”目录,然后可以将其放入PhoneGap

在Touch2.3中,有一个通过Sencha Cmd的on-PhoneGap集成。

我使用Ant在构建之前缩小html。我的一部分:


压缩html
我使用Ant在构建之前缩小html。我的一部分:


压缩html
我使用Ant在构建之前缩小html。我的一部分:


压缩html
我使用Ant在构建之前缩小html。我的一部分:


压缩html
<target name="-pre-build">
 <ant target="compress-html" />
</target>

<target name="compress-html">
 <echo>Compressing html</echo>
  <exec executable="java" dir="." failonerror="true">
  <arg line="-jar ${user.home}/lib/htmlcompressor-1.5.3.jar --compress-js -r -m '*.html' -o assets/www/ assets/www/" />
</exec>
</target>