是否与市场安装同时安装了应用程序的开发版本?
在市场发布版本的同时安装 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须更改其包名称。类似于:
com.you.package.test
You will have to change its package name. Something like:
com.you.package.test
FWIW 现在有一种使用 Android 新的 gradle 构建系统的简单方法。
人们可以简单地为调试版本指定不同的应用程序 ID:http://www.lopez-manas。 com/?p=294
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