本文主要是介绍Android多渠道分包解决方案:向META-INF中塞入渠道信息(不用重签名),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
文章目录
- 一. 前言
- 二. 在META-INF文件夹中塞入文件
- 1. 塞入空文件
- 2. 塞入非空文件
一. 前言
游戏要进行分渠道的推广,需要进行分包统计,如果挨个打包,或者执行批量重签名,如果渠道包很多,这个过程就会很耗时间,有一个办法就是在apk的META-INF文件夹中塞入渠道信息文件,运行的时候进行读取,不需要进行重签名,速度快。
二. 在META-INF文件夹中塞入文件
把.apk改成.zip,用解压工具进入zip内部,可以看到有个META-INF文件夹
往里面META-INF文件夹中塞入渠道信息文件,然后再把.zip改成.apk即可
1. 塞入空文件
塞入文件命名格式channel_xxx,不需要后缀名,例channel_5343
读取渠道信息的java代码如下
public static String GetChannelMsg()
{String channelMsg = "";final String start_flag = "META-INF/channel_";ApplicationInfo app_info = context.getApplicationInfo();String courceDir = app_info.sourceDir;ZipFile zipFile = null;try {zipFile = new ZipFile(courceDir);Enumeration<?> entries = zipFile.entries();while(entries.hasMoreElements()){ZipEntry entry = ((ZipEntry)entries.nextElement());String entryName = entry.getName();if(entryName.startsWith(start_flag)){channelMsg = entryName.replace(start_flag, "");break;}}} catch (IOException e) {// TODO: handle exceptione.printStackTrace();}finally{if(zipFile != null){try {zipFile.close();} catch (IOException e2) {// TODO: handle exceptione2.printStackTrace();}}}if(null == channelMsg || channelMsg.length() <= 0){channelMsg = "";}return channelMsg;
}
2. 塞入非空文件
和上面的方法基本一样,只是文件为非空文件。
塞入的文件命名:channel.properties
内容比如:
{"channel","5343"}
读取渠道信息文件的代码如下
import java.io.BufferedReader;public static String GetChannelMsg()
{String channelMsg = "";final String start_flag = "META-INF/channel.properties";ApplicationInfo app_info = context.getApplicationInfo();String courceDir = app_info.sourceDir;ZipFile zipFile = null;try {zipFile = new ZipFile(courceDir);Enumeration<?> entries = zipFile.entries();while(entries.hasMoreElements()){ZipEntry entry = ((ZipEntry)entries.nextElement());String entryName = entry.getName();if(entryName.startsWith(start_flag)){// 读取文件内容long size = entry.getSize();if(size > 0){BufferedReader br = new BufferedReader(new InputStreamReader(zipFile.getInputStream(entry)));String line;while((line = br.readLine()) != null){channelMsg += line;}}break;}}} catch (IOException e) {// TODO: handle exceptione.printStackTrace();}finally{if(zipFile != null){try {zipFile.close();} catch (IOException e2) {// TODO: handle exceptione2.printStackTrace();}}}if(null == channelMsg || channelMsg.length() <= 0){channelMsg = "";}return channelMsg;
}
这篇关于Android多渠道分包解决方案:向META-INF中塞入渠道信息(不用重签名)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!