定制Ant任务自动化的Andr​​oid APK代任务、Ant、Andr、APK

由网友(情场撩妹董事长)分享简介:我想我的自动化的Andr​​oid APK生成过程。该应用程序从服务器获取数据,我有两个服务器,一个是用于测试,其中包含虚拟数据,和另一个用于实际发布,其中包含真实的数据。这些服务器的URL的的strings.xml 文件中提到的。I want to automate my android apk generatio...

我想我的自动化的Andr​​oid APK生成过程。该应用程序从服务器获取数据,我有两个服务器,一个是用于测试,其中包含虚拟数据,和另一个用于实际发布,其中包含真实的数据。这些服务器的URL的的strings.xml 文件中提到的。

I want to automate my android apk generation process. The app fetches data from server, I have two servers, one is for testing which contains dummy data, and the other one for actual release which contains real data. URL of those servers are mentioned within strings.xml file.

现在我需要产生两个不同的APK,一个指向测试服务器,另一个指向真实服务器的自定义Ant任务。

Now I need a custom ant task for generating two different apks, one pointing to the test server and the other one pointing to the real server.

我的问题是,我不知道该怎么写从Ant脚本的strings.xml 文件,以便它可以更改相应的网址。

My problem is, I don't know how to write strings.xml file from ant script so that it can change the URLs accordingly.

推荐答案

您可以在蚂蚁使用替换任务。事情是这样的:

You could use the replace task in ant. Something like this:

<replace file="res/values/strings.xml" token="@@@" value="http://myUrl"/>
阅读全文

相关推荐

最新文章