博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
写你自己 android 多通道打包工具 可以包libs和.so文件
阅读量:5789 次
发布时间:2019-06-18

本文共 5145 字,大约阅读时间需要 17 分钟。

android上传应用程序,需要区分各个信道。

通常更改配置文件中的一个通道id,假设有多个通道,手动更改并生成apk这将是非常麻烦的,及增加误差的概率。

在这个课堂上分享一个打包工具。也可在网上类似的。我是做IT优化的基础上,,特别是封装so文件,一句小小的命令废了好大劲。

我们项目中使用的umeng做统计分析工具。 umeng在分渠道打包的时候须要改动manifest.xml中的

<meta-data  android:name="UMENG_CHANNEL" android:value="@string/channel_name" />  value值。

该值放到了strings.xml中<string name="channel_name">app_channel</string>,所以在编译的时候仅仅需改动app_channel。

以下是工具类,直接执行就可以.

package com.yang.main;import java.io.BufferedReader;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;import java.io.OutputStreamWriter;/** * @description: android渠道打包工具类,确保路径填写无误,渠道名称填入channels中 * @author: hytfly@gamil.com * @time:    2012-10-23下午5:17:47 */public class CompiledApkUpdate {    private static final String androidSDK_PATH = "D:\\android\\android-sdk-windows\\";        //android SDK路径    public static final String APK_NAME = "duitang.apk";    public static final String PROJECT_LIBARY = "";    public static final String PROJECT_PATH = "D:\\android\\workspace\\tmp\\duitang\\";        //要打包的project路径    public static final String APK_PATH = "D:\\android\\workspace\\tmp\\apk\\duitang_";        //打包后存放apk的路径  duitang_是前缀            private static final String apk_PATH_keystore = "D:\\android\\keystore\\bb";        //apk签名文件路径    private static final String channelFlag = "app_channel";    //    public static String[] channels = {"duitang"};     private static String currentChannelName = "";    public static String[] channels = {"duitang","91","360","QQ","jifeng","anzhuo","anzhi","youyi","appchina","wangyi","baidu","souhu","3g","nduo","xiaomi","huawei","meizu","lianxiang","aliyun","taobao","google","nearme","mumayi","wandoujia","crosscat","dangle","maopao","feiliu"};     public static void main(String[] args) {         replaceChannel();    }    /**     * 替换渠道名称     */    public static void replaceChannel() {        try {            String outPath = PROJECT_PATH + "res\\values\\strings.xml"; // 输出文件位置            String content = read(outPath);            for(int channelid=0;channelid

这样打包才干够把so文件也打包进去。 ); // 生成未签名的apk. new MyThread(process.getErrorStream()).start(); new MyThread(process.getErrorStream()).start(); process.waitFor(); process.destroy(); System.out.println(currentChannelName+" createUnsignedApk over"); }catch(Exception e){ e.printStackTrace(); } } /** * 签名apk */ public static void signedApk(int channelid){ try{ System.out.println(currentChannelName+" signed apk start"); Process process = null; String jarsigner; jarsigner = "jarsigner -keystore "+apk_PATH_keystore+" -storepass ***** -keypass ****** " + "-signedjar " + APK_PATH + channels[channelid] + ".apk " + PROJECT_PATH + "bin\\"+APK_NAME+" *****"; //签名apk process = Runtime .getRuntime() .exec(jarsigner); // 对apk进行签名 new MyThread(process.getErrorStream()).start(); new MyThread(process.getInputStream()).start(); process.waitFor(); process.destroy(); System.out.println(currentChannelName+" signed apk over"); // 一条渠道的打包完毕。

文件会输出到指定文件夹 }catch(Exception e){ e.printStackTrace(); } } /** * 这是google签名的打包方式。

跟上面一个方法差点儿相同的 zipalign apk */ public static void zipalignApk(int channelid){ try{ System.out.println(currentChannelName+":zipalign apk start"); String apkPath=APK_PATH.replace("{c}", channels[channelid]); File file=new File(apkPath); if(!file.getParentFile().isDirectory()) file.getParentFile().mkdirs(); Process process = null; String jarsigner; jarsigner = "cmd.exe /C "+androidSDK_PATH+"tools/zipalign.exe -v 4 " + apkPath + ".apk " + apkPath + "-z.apk"; //签名apk process = Runtime .getRuntime() .exec(jarsigner); // 对apk进行签名 new MyThread(process.getErrorStream()).start(); new MyThread(process.getInputStream()).start(); process.waitFor(); process.destroy(); System.out.println(currentChannelName+":zipalign apk over"); // 一条渠道的打包完毕。文件会输出到指定文件夹 }catch(Exception e){ e.printStackTrace(); System.exit(0); } } public static String read(String path) { StringBuffer res = new StringBuffer(); String line = null; try { BufferedReader reader = new BufferedReader(new InputStreamReader(new FileInputStream(path),"UTF-8")); while ((line = reader.readLine()) != null) { res.append(line + "\n"); } reader.close(); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } return res.toString(); } public static boolean write(String cont, String dist) { try { OutputStreamWriter writer = new OutputStreamWriter(new FileOutputStream(new File(dist)),"utf-8"); writer.write(cont); writer.flush(); writer.close(); return true; } catch (IOException e) { e.printStackTrace(); return false; } } public static class MyThread extends Thread{ BufferedReader bf; public MyThread(InputStream input) { bf = new BufferedReader(new InputStreamReader(input)); } public void run() { String line; try { line = bf.readLine(); while (line != null) { System.out.println(line); line = bf.readLine(); } } catch (IOException e) { e.printStackTrace(); } } } }



版权声明:本文博客原创文章,博客,未经同意,不得转载。

本文转自mfrbuaa博客园博客,原文链接:http://www.cnblogs.com/mfrbuaa/p/4638162.html,如需转载请自行联系原作者

你可能感兴趣的文章
uva 11468 - Substring(AC自己主动机+概率)
查看>>
Mysql 数据备份与恢复,用户创建,授权
查看>>
沉思录
查看>>
Angular.js中的$injector服务
查看>>
构建之法读书笔记01
查看>>
linux - lsof 命令最佳实践
查看>>
kafka性能测试
查看>>
现实世界的Windows Azure:h.e.t软件使用Windows Azure削减50%的成本
查看>>
深入.net框架
查看>>
聚合类新闻client产品功能点详情分析
查看>>
js设置定时器
查看>>
数据库除运算
查看>>
LeetCode--112--路径总和
查看>>
DeviceIOControl与驱动层 - 缓冲区模式
查看>>
感悟贴2016-05-13
查看>>
vim使用教程
查看>>
JDK在LINUX系统平台下的部署案例与总结
查看>>
跨vlan通信-----单臂路由技术
查看>>
百度编辑器ueditor 光标位置的坐标
查看>>
DEV-C++ 调试方法简明图文教程(转)
查看>>