自动更新平板电脑上的 Android 应用程序(即无需市场!)

发布于 2024-11-05 06:44:05 字数 154 浏览 0 评论 0原文

我编写了一个Android应用程序,主要针对没有安装Market的Android平板电脑,这意味着用户无法轻松更新该应用程序。我的想法是下载 apk 文件并执行 MArket 使用 apk 文件执行的操作。

由于该应用程序预装在平板电脑上,因此没有权限限制,但设备不得root。

I've written an Android App which is primarily targeted to Android Tablets without the Market installed, which means the user cannot easily update the App. My idea is to download the apk file and do whatever the MArket is doing with the apk file.

As the app is preinstalled on the Tablets there is no restriction in Permissions, but the device must not to be rooted.

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

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

发布评论

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

评论(2

萌逼全场 2024-11-12 06:44:05

似乎以下代码允许用户在检测到新版本并下载 apk 文件后安装 apk:

Intent intent = new Intent(Intent.ACTION_VIEW); 
intent.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive");
startActivity(intent);

Seems the following code allows the user to install the apk after detecting a new version and downloading the apk file:

Intent intent = new Intent(Intent.ACTION_VIEW); 
intent.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive");
startActivity(intent);
断桥再见 2024-11-12 06:44:05

好吧,我认为你可以做这样的事情。验证版本如果版本较低应用程序不会运行。

well i think that you just can do something like these. Verify version if version is lower app don't run.

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