我遇到了类似的问题,最终构建了我的自定义 Ant 脚本来构建应用程序。您可以运行宏或正则表达式来分配一种或另一种资源。
编辑:
首先,将 build.xml 添加到项目中:
打开命令提示符并导航到项目目录:
android update project --path
然后,您可以覆盖现有的 build.xml,如下所示。
注意:这个 Ant 脚本只是一个例子,我没有测试过:
<?xml version="1.0" encoding="UTF-8"?>
<project name="Example" default="help">
<property file="local.properties" />
<property file="ant.properties" />
<loadproperties srcFile="project.properties" />
<!-- quick check on sdk.dir -->
<fail
message="sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through an env var"
unless="sdk.dir"/>
<!-- IMPORT ANT?S BUILD.XML -->
<import file="${sdk.dir}/tools/ant/build.xml" />
<property name="app.icon" value="${icon}" />
<property name="icon.file" location="res/drawable/icon.png" />
<target name="test-release">
<antcall target="test-pre-release" />
<antcall target="release" />
</target>
<target name="test-pre-release">
<copy file="${app.icon}" tofile="${icon.file}" overwrite="true"/>
</target>
</project>
然后,要使用自定义图标构建此项目,请打开命令提示符并转到项目目录:
CALL ant -f build.xml test-release -Dicon=path/to/your/icon.png
如前所述,这是一个非常基本的示例。要构建一个好的脚本,您必须学习一点 Ant 语法,但这并不难。