我想使用 Gradle 构建 Android。所有应用商店都有近 100 个 apk。唯一的区别是 assets/config.properties 文件。
蚂蚁脚本:
<target name="makechannelidapk">
<propertyregex property="channel_id" input="${line_content}" regexp="(.*)," select="\1"/>
<delete file="${asset-dir}/config.properties" />
<echo file="${asset-dir}/config.properties"CHANNEL_ID=${channel_id}</echo>
<antcall target="finalmake" >
<param name="id" value="${client_source}"/>
</antcall>
</target>