是否与市场安装同时安装了应用程序的开发版本?

发布于 2024-11-27 02:35:35 字数 298 浏览 2 评论 0原文

在市场发布版本的同时安装 Android 应用程序的开发/测试版本的最佳方法是什么?我想通过电子邮件向测试人员发送一个 .apk 文件,他们可以与市场上当前发布的版本一起安装。这怎么可能? (我猜我可以用相同的密钥对其进行签名,以便他们可以更新现有版本,但如果测试版本中存在错误,他们就无法轻易返回)

我自己的设备也是如此 - 当我想尝试时从市场中取出我的应用程序版本,我总是必须完全删除开发版本,包括所有数据,然后从市场安装它并再次设置。这很烦人,但我想上传后只需要测试我的应用程序它推向市场..而且我没有专门的开发设备..

有一个好的工作流程吗?

What is the best way to have a development/test version of an android app installed at the same time as the released version from market? i would like to send testers a .apk file via email they can install side by side with the currently released version available through the market. how is this possible? (it guess i could sign it with the same key so they can update the existing version, but if there is a bug in the test version they can't easily go back)

the same goes for my own device - when i want to try out the version of my app from market i always have to completely remove the development version including all my data and install it from market and set it up again.. this is pretty annoying, but i guess it's simply necessary to test my app after uploading it to the market.. and i don't have a dedicated development device..

is there a good workflow for this?

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

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

发布评论

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

评论(2

执着的年纪 2024-12-04 02:35:35

您必须更改其包名称。类似于:com.you.package.test

You will have to change its package name. Something like: com.you.package.test

開玄 2024-12-04 02:35:35

FWIW 现在有一种使用 Android 新的 gradle 构建系统的简单方法。

人们可以简单地为调试版本指定不同的应用程序 ID:http://www.lopez-manas。 com/?p=294

 buildTypes {
    debug {
        debuggable true
        applicationIdSuffix '.debug'
        versionNameSuffix '-debug'
        signingConfig signingConfigs.debug
    }

FWIW there is now an easy way with android's new gradle build system.

One can simply specify a different application id for debug versions: http://www.lopez-manas.com/?p=294

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