当前位置: 首页 > news >正文

Eclipse Ant 批量多渠道打包(二)

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

在前一篇中,我给大家分享了一下,如何使用Ant自动打包, 这一篇文章中,我就跟大家一起讨论如何实现批量多渠道打包. 我也是现学的, 有什么不足的地方,希望大家指出.

 实现批量循环打包需要一个类似于for循环的功能,在Ant的核心包里没有相关的For循环的Task,即不支持for循环,但是ant支持第三方扩展包,以支持更多的其他功能。

于是我们要下载相应的支持for循环的扩展包。可以使用开源的Ant-contrib包。下载地址:http://ant-contrib.sourceforge.net/  。

下载好这个ant-contrib-1.0b3.jar包后, 将它复制到 ant 目录的lib文件夹中154428_7Ktz_1018305.png

(1)首先在ant.properties文件中增加属性 market_channels (渠道列表,以逗号分割),version(应用程序版本名)151816_htDc_1018305.png

(2) 在build.xml 中添加如下代码, 注意添加的位置,要接着Condition标签152048_a6hP_1018305.png

下面的内容是要添加的152208_MSz9_1018305.png

<?xml version="1.0" encoding="UTF-8"?>
<project name="AntTestDemo" default="help">

    <!-- The local.properties file is created and updated by the 'android' tool.
         It contains the path to the SDK. It should *NOT* be checked into
         Version Control Systems. -->
    <property file="local.properties" />

    <!-- The ant.properties file can be created by you. It is only edited by the
         'android' tool to add properties to it.
         This is the place to change some Ant specific build properties.
         Here are some properties you may want to change/update:

         source.dir
             The name of the source directory. Default is 'src'.
         out.dir
             The name of the output directory. Default is 'bin'.

         For other overridable properties, look at the beginning of the rules
         files in the SDK, at tools/ant/build.xml

         Properties related to the SDK location or the project target should
         be updated using the 'android' tool with the 'update' action.

         This file is an integral part of the build system for your
         application and should be checked into Version Control Systems.

         -->
    <property file="ant.properties" />

    <!-- if sdk.dir was not set from one of the property file, then
         get it from the ANDROID_HOME env var.
         This must be done before we load project.properties since
         the proguard config can use sdk.dir -->
    <property environment="env" />
    <condition property="sdk.dir" value="${env.ANDROID_HOME}">
        <isset property="env.ANDROID_HOME" />
    </condition>
	
	<!-- 渠道包打包脚本  ant deploy-->
		<taskdef resource="net/sf/antcontrib/antcontrib.properties">
			<classpath>
				<pathelement location="lib/ant-contrib-1.0b3.jar"/>
			</classpath>
		</taskdef>
		
		<target name="deploy">
		   <foreach target="modify_manifest" list="${market_channels}" param="channel" delimiter=",">
		   </foreach>
		</target>
		
		<target name="modify_manifest">
			<replaceregexp flags="g" byline="false">
				<!-- 匹配的内容是 android:value="*****" android:name="UMENG_CHANNEL" -->
				<regexp pattern='android:value="(.*)" android:name="UMENG_CHANNEL"' />
				<!-- 匹配之后将其替换为 android:value="渠道名" android:name="UMENG_CHANNEL" -->
				<substitution expression='android:value="${channel}" android:name="UMENG_CHANNEL"' />  
				<!-- 正则表达式需要匹配的文件为AndroidManifest.xml -->
				<fileset dir="" includes="AndroidManifest.xml" />
			</replaceregexp>
			<property name="out.release.file" location="${out.absolute.dir}/${ant.project.name}_${channel}.apk" />
			<!--包 -->
			<antcall target="release" />
			<!--输出渠道包到bin/out目录下 -->
			<copy tofile="${out.absolute.dir}/out/${ant.project.name}v${version}-${channel}.apk" file="bin/${ant.project.name}-release.apk"/>
		</target>
	
	

    <!-- The project.properties file is created and updated by the 'android'
         tool, as well as ADT.

         This contains project specific properties such as project target, and library
         dependencies. Lower level build properties are stored in ant.properties
         (or in .classpath for Eclipse projects).

         This file is an integral part of the build system for your
         application and should be checked into Version Control Systems. -->
    <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 the ANDROID_HOME environment variable."
            unless="sdk.dir"
    />

    <!--
        Import per project custom build rules if present at the root of the project.
        This is the place to put custom intermediary targets such as:
            -pre-build
            -pre-compile
            -post-compile (This is typically used for code obfuscation.
                           Compiled code location: ${out.classes.absolute.dir}
                           If this is not done in place, override ${out.dex.input.absolute.dir})
            -post-package
            -post-build
            -pre-clean
    -->
    <import file="custom_rules.xml" optional="true" />

    <!-- Import the actual build file.

         To customize existing targets, there are two options:
         - Customize only one target:
             - copy/paste the target into this file, *before* the
               <import> task.
             - customize it to your needs.
         - Customize the whole content of build.xml
             - copy/paste the content of the rules files (minus the top node)
               into this file, replacing the <import> task.
             - customize to your needs.

         ***********************
         ****** IMPORTANT ******
         ***********************
         In all cases you must update the value of version-tag below to read 'custom' instead of an integer,
         in order to avoid having your file be overridden by tools such as "android update project"
    -->
    <!-- version-tag: 1 -->
    <import file="${sdk.dir}/tools/ant/build.xml" />
	
	
	

	
	
	


</project>

以上是build.xml 文件的内容

(3) 在项目根目录下运行 ant deploy 命令就会帮你各个渠道的签名包了(为了全程可以自动执行,在bin目录的out目录下。154552_kJfv_1018305.png152447_0ZFR_1018305.png


转载于:https://my.oschina.net/u/1018305/blog/390386

相关文章:

  • js数组操作大全
  • Godaddy ssl续费更新问题总结
  • VMware + OpenStack: 从 Plugin 到 VIO (VMware Integrated OpenStack)的演进
  • 反转字符串中的单词
  • 开始51CTO的博客经营
  • 微信小程序把玩(二)window配置
  • Lucene.net站内搜索—2、Lucene.Net简介和分词
  • 201521123040《Java程序设计》第1周学习总结
  • Android内存管理之道
  • 关于二维数组求解面积的问题
  • 算法设计 - LCS 最长公共子序列最长公共子串 LIS 最长递增子序列
  • Linux下搭建gtk+2.0开发环境
  • ThreadPoolExecutor使用介绍
  • nginx参考时间模型和几种常见的I/0模型
  • 搭建项目自动化框架的搭建、改进与思考
  • 「前端」从UglifyJSPlugin强制开启css压缩探究webpack插件运行机制
  • 【跃迁之路】【699天】程序员高效学习方法论探索系列(实验阶段456-2019.1.19)...
  • Angular Elements 及其运作原理
  • docker python 配置
  • JavaScript中的对象个人分享
  • Less 日常用法
  • PaddlePaddle-GitHub的正确打开姿势
  • WePY 在小程序性能调优上做出的探究
  • 当SetTimeout遇到了字符串
  • 理解 C# 泛型接口中的协变与逆变(抗变)
  • 理解IaaS, PaaS, SaaS等云模型 (Cloud Models)
  • 聊聊directory traversal attack
  • 聊聊redis的数据结构的应用
  • 漫谈开发设计中的一些“原则”及“设计哲学”
  • 提升用户体验的利器——使用Vue-Occupy实现占位效果
  • 微信小程序设置上一页数据
  • 物联网链路协议
  • #每日一题合集#牛客JZ23-JZ33
  • (16)UiBot:智能化软件机器人(以头歌抓取课程数据为例)
  • (MATLAB)第五章-矩阵运算
  • (TipsTricks)用客户端模板精简JavaScript代码
  • (附源码)计算机毕业设计SSM教师教学质量评价系统
  • (更新)A股上市公司华证ESG评级得分稳健性校验ESG得分年均值中位数(2009-2023年.12)
  • (四)Controller接口控制器详解(三)
  • (一)认识微服务
  • (转)Sql Server 保留几位小数的两种做法
  • (转)编辑寄语:因为爱心,所以美丽
  • (转载)hibernate缓存
  • .axf 转化 .bin文件 的方法
  • .NET Core MongoDB数据仓储和工作单元模式封装
  • .NET Framework .NET Core与 .NET 的区别
  • .net Signalr 使用笔记
  • .Net调用Java编写的WebServices返回值为Null的解决方法(SoapUI工具测试有返回值)
  • .Net通用分页类(存储过程分页版,可以选择页码的显示样式,且有中英选择)
  • .vollhavhelp-V-XXXXXXXX勒索病毒的最新威胁:如何恢复您的数据?
  • @GetMapping和@RequestMapping的区别
  • @modelattribute注解用postman测试怎么传参_接口测试之问题挖掘
  • @软考考生,这份软考高分攻略你须知道
  • [ vulhub漏洞复现篇 ] Celery <4.0 Redis未授权访问+Pickle反序列化利用
  • [ vulhub漏洞复现篇 ] ECShop 2.x / 3.x SQL注入/远程执行代码漏洞 xianzhi-2017-02-82239600