[更新]
我正在实施APK扩展文件支持(但没有XAPK ZIP库支持)。
文档暗示如果缺少必需的APK扩展文件(例如,它已从obb文件夹中删除),我的应用程序将重新下载它。这对我来说并不会发生;我的应用程序一直说NO_DOWNLOAD_REQUIRED。 Google Play Downloader Library似乎从其SQLite数据库获取下载信息。请注意,我还没有在Google Play上更新草稿APK和扩展文件 - 它们仍然是第一个版本。此外,上传到Google Play的APK版本代码也与测试设备上的版本相同。
详情:
我刚刚在某处看到上传到Google Play的APK扩展文件需要几个小时才能生效。就我而言,我在上传后立即测试了我的实现。但是必须注意到Google Play上有文件,因为找不到资源"它会给出不同的消息("下载已完成")。太糟糕了,它实际上并没有下载任何东西;从那以后,它甚至没有尝试(它一直返回NO_DOWNLOAD_REQUIRED)。
我错过了什么?
如果APK扩展文件被删除,那么下载者库是否应该注意?它的实现似乎解决了这个问题,但前提是SQLite数据库查询为可下载文件返回非null值。
Google Play下载程序库内部实施的相关部分(最后一条评论是我的):
int status = NO_DOWNLOAD_REQUIRED;
// the database automatically reads the metadata for version code
// and download status when the instance is created
DownloadsDB db = DownloadsDB.getDB(context);
// we need to update the LVL check and get a successful status to
// proceed
if (isLVLCheckRequired(db, pi)) {
status = LVL_CHECK_REQUIRED;
}
// we don't have to update LVL. do we still have a download to start?
if (db.mStatus == 0) {
DownloadInfo[] infos = db.getDownloads();
if (null != infos) {
for (DownloadInfo info : infos) {
if (!Helpers.doesFileExist(context, info.mFileName, info.mTotalBytes, true)) {
status = DOWNLOAD_REQUIRED;
db.updateStatus(-1);
break;
}
}
}
/// <----- This is when infos==null, in this case result will be NO_DOWNLOAD_REQUIRED
} else {
status = DOWNLOAD_REQUIRED;
}
答案 0 :(得分:0)
如果遇到相同问题,请卸载该应用程序,然后重新安装。 (不要让Eclipse以通常的方式重新安装它。手动从设备上完全卸载它。)