0

我正在开发煎茶触摸应用程序。我尝试使用 phonegap 构建为本机应用程序。但触摸库本身占用超过 10 MB。是否可以使用蚂蚁缩小它?

4

2 回答 2

2

Sencha Cmd在后台使用 Ant 为您的应用程序缩小“构建”目录 - 然后您可以将其放入 PhoneGap。

在 Touch 2.3 中,有一个通过 Sencha Cmd 集成 PhoneGap 的完整指南

于 2013-10-29T12:28:19.810 回答
1

在构建之前,我使用HtmlCompressor用 Ant 缩小 html。我的build.xml的一部分:

<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>
于 2013-10-29T14:21:56.800 回答