私は現在、自動ブランディング作業を行うために Ant で遊んでいます。デフォルトの build.xml を変更し、独自のターゲットをセットアップしました。私が尋ねたいのは、特定の名前でビルドするだけで apk ファイルの名前を自動的に変更できる方法が Ant Script にあるということですか?
現在、build.xml に次の Ant ターゲット設定があります。
<target name="release-brandA"
depends="default, -set-release-mode, -release-obfuscation-check, -package, -post-package, -release-prompt-for-password, -release-nosign, -release-sign, -post-build"
description="Builds the application in release mode for brandA.">
<delete dir="${res}" />
<copydir dest="${res}" src="${branding}/brandA" forceoverwrite="ture" />
<replaceregexp flags="g" byline="false">
<regexp pattern="import com.arthur.android(.*).R;"/>
<substitution expression="import com.arthur.android.brandA.R;"/>
<fileset dir="src" includes="**/*.java" />
</replaceregexp>
<replaceregexp flags="g" byline="false">
<regexp pattern="package="com.arthur.android(.*)"" />
<substitution expression="package="com.arthur.android.brandA"" />
<fileset dir="" includes="AndroidManifest.xml" />
</replaceregexp>
</target>
出力ファイルを brandA.apk のようにするために、さらにタスクを追加する方法はありますか?
ありがとうございました!