为什么apk文件不更新

发布于 2024-09-26 09:32:23 字数 292 浏览 1 评论 0原文

我正在使用 Eclipse 开发 Android 应用程序。我使用导出 Android 应用程序功能导出应用程序。我对生成的 apk 文件进行签名并对齐。然后,我将此 apk 复制到网络服务器并尝试将其安装在我的手机上。它会完成安装步骤,当我测试该应用程序时,它不包含我的最新更改。它似乎安装了我以前的版本之一。

问题在于: - 我创建apk的方式? - 手机上的缓存尚未清除?

如何让 Eclispe 制作当前的 apk,以及如何让我的手机安装它?

如何验证特定 apk 文件中的代码版本?

谢谢, 格里

I'm developing an android app using Eclipse. I export the app using the Export Android App function. I sign and align the resulting apk file. I then copy this apk to a webserver and try to install it on my phone. It goes though the installation steps, and when I test the app it does not contain my latest changes. It seems to install one of my previous builds.

Is the problem in:
- the way I create the apk?
- a cache on the phone that has not been cleared?

How do I get Eclispe to make a current apk, and how do I get my phone to install it?

How can I verify which version of my code is in a particular apk file?

Thanks,
Gerry

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

两仪 2024-10-03 09:32:23

可能是 Eclipse 没有正确构建新的 .apk,尽管听起来您导出正确。您是否为新的 .apk 指定了与旧的不同的名称?如果没有,那么您可能不小心下载或安装了旧版本。

您应该能够进入设置 ->应用->在手机上管理应用程序,然后找到您的应用程序并打开其信息页面。版本字符串应列在顶部附近,以便您可以验证是否安装了最新版本。

It could be that Eclipse isn't building the new .apk properly, though it sounds like you're exporting correctly. Are you giving the new .apk a different name from the old one? If not, then you could be downloading or installing the old one by accident.

You should be able to go into Settings -> Applications -> Manage Applications on your phone, then find your app and open its info page. The version string should be listed near the top, so you can verify that the latest version is installed.

笑脸一如从前 2024-10-03 09:32:23

在开始安装尝试之前,尝试运行“adb logcat | tee logfile”(或 adb logcat > logfile),然后按 ctrl-C 并用细齿梳理文件 - 可能存在一些隐藏在问题中的提示噪音。

Try running "adb logcat | tee logfile" (or adb logcat > logfile) before you begin the install attempt, then ctrl-C it and go over the file with a fine tooth comb - there's likely some hints of the problem buried within the noise.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文