Android APK 多渠道快速编译

对于Android开发者而言,最麻烦的就是屏幕适配和需要打包多个渠道的包!



下面提供一个快速打包的方法。



1.不需要把渠道号放在manifest文件中
如果我们使用的渠道号没有必要非放在manifest文件中,我们可以选择放在工程的assets文件夹下,因为这个文件夹被编译之后是没有改变的。
例如:
1)我们把渠道号放在/assets/channel/channel.txt文件中。
2)然后生成生成一个没有签名的包(可以使用eclipse生成,也可以使用ant编译出一个未签名的apk)
3)使用rar压缩来进行解压、修改渠道号、压缩、签名。

 
 
  1. rd unsignedAPK\ /s /q
  2. rd signedAPK\ /s /q
  3. md signedAPK\
  4. md unsignedAPK\
  5. for /f "tokens=1-2 delims=','" %%i IN (chid_list.txt)do winrar x Test.apk Test_temp\&&del Test_temp\assets\channel\channel.txt&&echo %%i>>Test_temp\assets\channel\channel.txt&&winrar a -afzip -ep1 -r0 %%j.apk Test_temp\*.*&&rd Test_temp\ /s /q&&copy %%j.apk unsignedAPK\&&del %%j.apk&&jarsigner -verbose -keystore sign -storepass pass -signedjar signedAPK\%%j.apk unsignedAPK\%%j.apk biween
  6. rd unsignedAPK\ /s /q
  7. pause



上面是一个批处理文件,其中Test.apk 是你的未签名的包,chidlist.txt是你需要打包的渠道号列表(格式是:2401,Test2.4.1_2401,逗号前面的是渠道号,后面的是签名后生成的文件名),sign 是你的证书文件,pass 是证书的密码。



试试效果吧,只要把上面的准备工作完成,点击批处理,基本几百个包5分钟之内就能打完。
注:批处理依赖WinRAR,需要先装Winrar



2.对于必须要在manifest里面加渠道号的
有些情况下必须要把渠道号放在manifest里面,比如个人开发者需要加入广告,而广告提供方提供的库是从manifest里面读取渠道号的。



这种情况下就没有什么好办法了,只能ant编译,但也可以做一些优化。
具体的ant环境搭建就不再多说了,需要用到一个for循环的库。
具体的实现方案就是执行一遍编译把所需要的class,资源,等等都编译出来,然后你会发现在/bin/里面也会有一个manifest,这个是ant编译的时候直接从工程里拷过来的,我们要做的就是修改这个manifest里的渠道号,然后重新编译资源包,再签名等等。



下面是ant编译的脚本:



 
 
  1. <property name="market_channels_names" value="2361:EOE" /><!-- 这是1个渠道号,用:分开的,如果多个都以这种形式用逗号分开 -->
  2. <!-- 版本号 -->
  3. <property name="app_version" value="2.4.1 />
  4. <!-- 签名信息 -->
  5. <property name="key.store" value="证书" />
  6. <property name="key.alias" value="alias名称" />
  7. <property name="key.store.password" value="密码" />
  8. <property name="key.alias.password" value="alias密码" />
  9. <!-- 编码 -->
  10. <property name="encoding" value="UTF-8" />
  11. <property name="out.channel.dir" value="out_channel" />
  12. <!-- 导入编译文件 -->
  13. <import file="build_ext.xml" />
  14. <!-- 把各种资源打包成apk -->
  15. <target name="rebuild"
  16. depends="-set-release-mode, -release-obfuscation-check, -build-apk, -post-package, -release-prompt-for-password, -release-nosign, -release-sign, -post-build"
  17. description="Builds the application in release mode.">
  18. </target>
  19. <!-- -build-setup -->
  20. <target name="-build-apk" depends="-build-setup,-package-resources">
  21. <!-- only package apk if *not* a library project -->
  22. <do-only-if-not-library elseText="Library project: do not package apk..." >
  23. <if condition="${build.is.instrumented}">
  24. <then>
  25. <package-helper>
  26. <extra-jars>
  27. <!-- Injected from external file -->
  28. <jarfile path="${emma.dir}/emma_device.jar" />
  29. </extra-jars>
  30. </package-helper>
  31. </then>
  32. <else>
  33. <package-helper />
  34. </else>
  35. </if>
  36. </do-only-if-not-library>
  37. </target>
  38. <target name="make" >
  39. <!-- 删除并创建输出文件夹(打包签名好的文件) -->
  40. <delete dir="${out.channel.dir}"/>
  41. <mkdir dir="${out.channel.dir}" />
  42. <!-- 清空已编译的文件,再编译 -->
  43. <!-- -->
  44. <antcall target="clean" />
  45. <antcall target="release" />
  46.  
  47. <foreach target="modify_manifest_channels" list="${market_channels_names}" param="nameandchannel" delimiter="," />
  48. </target>
  49. <!-- 修改channel, Umeng channel, Adview channel, channel值为2361对应脚本中的${channelname},Umeng channel, Adview channel值为EOE对应脚本中的${channelkey} -->
  50. <target name="modify_manifest_channels" >
  51. <!-- 获取渠道名字 -->
  52. <propertyregex override="true" property="channelname" input="${nameandchannel}" regexp="(.*):" select="\1" />
  53. <!-- 获取渠道号码 -->
  54. <propertyregex override="true" property="channelkey" input="${nameandchannel}" regexp=":(.*)" select="\1" />
  55. <replaceregexp flags="g" byline="false">
  56.  
  57. <regexp pattern="android:value=&quot;(.*)&quot; android:name=&quot;CHANNEL&quot;" />
  58.  
  59. <substitution expression="android:value=&quot;${channelname}&quot; android:name=&quot;CHANNEL&quot;" />
  60.  
  61. <fileset dir="${out.absolute.dir}" includes="AndroidManifest.xml" />
  62. </replaceregexp>
  63. <replaceregexp flags="g" byline="false">
  64.  
  65. <regexp pattern="android:value=&quot;(.*)&quot; android:name=&quot;UMENG_CHANNEL&quot;" />
  66.  
  67. <substitution expression="android:value=&quot;${channelkey}&quot; android:name=&quot;UMENG_CHANNEL&quot;" />
  68.  
  69. <fileset dir="${out.absolute.dir}" includes="AndroidManifest.xml" />
  70. </replaceregexp>
  71. <replaceregexp flags="g" byline="false">
  72.  
  73. <regexp pattern="android:name=&quot;AdView_CHANNEL&quot; android:value=&quot;(.*)&quot;" />
  74.  
  75. <substitution expression="android:name=&quot;AdView_CHANNEL&quot; android:value=&quot;${channelkey}&quot;" />
  76.  
  77. <fileset dir="${out.absolute.dir}" includes="AndroidManifest.xml" />
  78. </replaceregexp>
  79. <property
  80. name="out.release.file"
  81. location="${out.absolute.dir}/${ant.project.name}_${channelname}_${app_version}.apk" />
  82. <!-- 各版本输出位置 -->
  83. <property
  84. name="out.final.file"
  85. location="${out.absolute.dir}/${ant.project.name}_${channelname}_${app_version}.apk" />
  86. <antcall target="rebuild" />
  87. <!-- 复制打包完的文件到渠道文件夹 -->
  88. <copy file="${out.final.file}" tofile="${out.channel.dir}/${ant.project.name}_${channelname}_${app_version}.apk"/>
  89. <!-- 删除复制完成的文件 -->
  90. <delete file="${out.final.file}"/>
  91. <!-- -->
  92. <delete file="${out.absolute.dir}/${ant.project.name}-release-unsigned.apk" />
  93. <delete file="${out.absolute.dir}/${ant.project.name}-release-unaligned.apk" />
  94. </target>



通过上面的方法能够提高一些打包的速度,但是也不是很快。



现在好点的打包方法介绍完了,如果哪位有更好的办法,欢迎分享出来!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值