ant多渠道打包

1.
android update project -p path -n  name  -t target 。
 
 
2.
 local.properties
 
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must *NOT* be checked into Version Control Systems,
# as it contains information specific to your local configuration.

# location of the SDK. This is only used by Ant
# For customization when using a Version Control System, please read the
# header note.
sdk.dir=D:\\software\\sdk  //sdk的路径
 
3.
 
  proguard-project.txt
 
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must be checked in Version Control Systems.
#
# To customize properties used by the Ant build system edit
# "ant.properties", and override values to adapt the script to your
# project structure.
#
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt

# Project target.
target=android-21 //sdk的版本
 
4.
 
 ant.properties
 
application.package=包名
ant.project.name=项目的名字
java.encoding=utf-8

key.store=keystore的路径
key.store.password=xxxx
key.alias=xxxxx
key.alias.password= xxxx

app_version=1.0.0
market_channels=yingyongbao,wandoujia,360

 
5. build.xml    
    <import file="${sdk.dir}/tools/ant/build.xml" />
    <property name="out.unaligned.dir" value="打包后的保存路径_${app_version}/" />
    <mkdir dir="${out.unaligned.dir}" />
    <target name="modify_update_file">
        <echo>*********************** make channel ${channel}</echo>

        <replaceregexp file="AndroidManifest.xml"
                       match='channel'
                       replace='${channel}'
                       byline="false"
                       encoding="utf-8"
        />
        <property name="out.unaligned.file" location="${out.unaligned.dir}/app的名称_${app_version}_${channel}_android.apk"/>

    </target>

    <target name="make_one_channels" depends="savemanifest,modify_update_file,release,replacemanifest,deletebin" description="description">
    </target>

    <target name="replacemanifest">
        <echo>*********************** replacemanifest</echo>
        <delete file="${basedir}\AndroidManifest.xml"/>
        <copy file="..\temp\build\META-INF\AndroidManifest.xml" todir="${basedir}" encoding="utf-8"/>
    </target>

    <target name="savemanifest">
        <echo>*********************** savemanifest</echo>
        <copy file="${basedir}\AndroidManifest.xml" todir="..\temp\build\META-INF" encoding="utf-8" />
    </target>

    <target name="deletebin">
        <delete dir="${basedir}\bin" />
    </target>

    <taskdef name="foreach" classname="net.sf.antcontrib.logic.ForEach" classpath="D:\software\apache-ant-1.9.7\lib\ant-contrib-1.0b3.jar" />
    <target name="make_channels"> 
        <foreach target="make_one_channels" list="${market_channels}" delimiter="," param="channel">
        </foreach>
    </target>
    
6.  ant make_channels  
 
    
    
    sdk\tools\ant 下修改build.xml的    
    <property name="java.target" value="1.5" />
    <property name="java.source" value="1.5" />

                
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值