gpt4 book ai didi

android - 创建APK扩展文件的步骤

转载 作者:IT王子 更新时间:2023-10-29 00:02:53 26 4
gpt4 key购买 nike

我已开发应用程序并成功运行。

我在我的应用程序中使用了应用程序许可功能。现在我要在 google play 上上传一个应用程序。

请告诉我步骤,如何使用应用程序许可以及如何创建 APK 扩展文件?

最佳答案

扩展文件取消了上传超过 100MB 的 apk 大小的限制。您应该在上传 apk 时附上这些文件。每个应用最多可为每个 APK 提供 4GB(2GB - 主要,2GB - 补丁)的附加数据。

创建扩展文件时必须遵循命名约定

[main|patch].<expansion-version>.<package-name>.obb

注意:

  1. main - 如果没有这些文件,您的应用程序将无法运行
  2. patch - 是那些额外的文件,没有这些文件你的应用程序可以运行
  3. expansion-version - 您提供给您的 apk 的版本,以便不同版本的扩展文件不会冲突
  4. package-name - 这是你唯一的包名

.obb我们没有附加,它会在上传时由 Google 隐式附加

假设您在当前目录中拥有所有内容,因此只需选择所有内容并将其制作为名为 main.2.com.xyz.abc.zip 的 zip并在上传 apk 时附上它

enter image description here

这都是上传部分,现在正在下载部分

首先您需要通过点击 SDK-Manager 下载 Google 额外包

enter image description here

现在从现有源创建新项目并从路径 sdk-path/extras/google

导入 ma​​rket_licensingplay_apk_expansion

请记住:免费应用程序不需要许可,但需要扩展概念,您只需要为您的项目提供 market_licensing 的引用,它将隐式管理。

play_apk_expansion包含三个项目downloader_library , zip_file , downloader_sample .

downloader_library 本身具有 Market_licensing 的引用。

现在您只需专注于 downloader_sample首先将包名(用于测试)更改为您的包名(包名与上传的 apk 相同)

非常重要

SampleDownloaderActivity导航到...

private static final XAPKFile[] xAPKS = {
new XAPKFile(
true, // true signifies a main file
2, // the version of the APK that the file was uploaded
// against
xxxxxxxxxxxL // the length of the zipfile in bytes right click on you expansion file and get the size in bytes, size must be same as zip size
),

};

现在此 Activity 将下载扩展文件并将其存储在 sdcard/Android/obb/[main|patch].<expansion-version>.<package-name>.obb忽略 obb,只需将此文件解压缩到您想要的任何位置(推荐 sdcard/Android/data,因为它会在您的应用程序被卸载时删除)。

有最新的设备可以直接从 Play 商店下载扩展文件并存储在 sdcard/Android/obb/所以你必须非常小心地检查所有情况

  1. Obb 已下载
  2. 可用内存
  3. 已下载但未解压缩
  4. 要选择的内存(参见内存案例)

内存案例:

如果您使用任何新设备或前。 micromax funbook,那么它有三个内存

  • /data/data/(手机内存)getFilesDirectory()
  • /mnt/sdcard/(手机内部sdcard)Environment.getExternalStorageDirectory()
  • /mnt/extsd/(外部存储卡)/mnt/extsd

希望这会对您有所帮助并满足您的要求。

还有一件事在下面使用 ZipHelper解压缩内容。

ZipHelper.java

public class ZipHelper
{
boolean zipError=false;

public boolean isZipError() {
return zipError;
}

public void setZipError(boolean zipError) {
this.zipError = zipError;
}

public void unzip(String archive, File outputDir)
{
try {
Log.d("control","ZipHelper.unzip() - File: " + archive);
ZipFile zipfile = new ZipFile(archive);
for (Enumeration e = zipfile.entries(); e.hasMoreElements(); ) {
ZipEntry entry = (ZipEntry) e.nextElement();
unzipEntry(zipfile, entry, outputDir);

}
}
catch (Exception e) {
Log.d("control","ZipHelper.unzip() - Error extracting file " + archive+": "+ e);
setZipError(true);
}
}

private void unzipEntry(ZipFile zipfile, ZipEntry entry, File outputDir) throws IOException
{
if (entry.isDirectory()) {
createDirectory(new File(outputDir, entry.getName()));
return;
}

File outputFile = new File(outputDir, entry.getName());
if (!outputFile.getParentFile().exists()){
createDirectory(outputFile.getParentFile());
}

Log.d("control","ZipHelper.unzipEntry() - Extracting: " + entry);
BufferedInputStream inputStream = new BufferedInputStream(zipfile.getInputStream(entry));
BufferedOutputStream outputStream = new BufferedOutputStream(new FileOutputStream(outputFile));

try {
IOUtils.copy(inputStream, outputStream);
}
catch (Exception e) {
Log.d("control","ZipHelper.unzipEntry() - Error: " + e);
setZipError(true);
}
finally {
outputStream.close();
inputStream.close();
}
}

private void createDirectory(File dir)
{
Log.d("control","ZipHelper.createDir() - Creating directory: "+dir.getName());
if (!dir.exists()){
if(!dir.mkdirs()) throw new RuntimeException("Can't create directory "+dir);
}
else Log.d("control","ZipHelper.createDir() - Exists directory: "+dir.getName());
}
}

关于android - 创建APK扩展文件的步骤,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11715855/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com