我使用扩展库开发了一个Android应用程序。
我已经使用了必要的策略来创建和上传扩展文件。我已经在play store中上传了apk和主扩展文件。他们被保存为草稿,而不是已发布。虽然我安装了这个apk并测试了它我的设备有时在上传后会发生apk扩展文件下载。但是当我尝试之后有时会显示“下载失败,因为无法找到资源”。
我只使用了主扩展文件。我的应用版本代码是5,扩展文件的大小是17509413字节。
我的代码段如下:
private static final XAPKFile[] xAPKS =
{
new XAPKFile(
true,
5,17509413L
)
};
有人可以帮我吗?
提前致谢。
答案 0 :(得分:0)
指定大小(以字节为单位)与扩展文件大小相同。
private static final XAPKFile[] xAPKS =
{new XAPKFile(true, // true signifies a main file
5 , // the version of the APK that the file was uploaded
17509413L // the length of the file in bytes)
}