ADB install 卸载我上次安装的 adb apk
我正在开发 10 个应用程序,希望将它们同时安装在我的手机上以向其他人展示。然而,每次我安装一个时,它都会“卸载”另一个。我所说的“卸载”是指如果我将链接复制到主屏幕,旧应用程序将不会启动,但 adb install old-app.apk 表示已安装。
这是正常的吗?或者我有一些包命名冲突之类的吗?
I have 10 apps I'm developing and would like to have them all on my phone at the same time to show others. However every time I install one it 'uninstalls' the other. By 'uninstalls' I mean if I copy the link to my home screen the old app will not start, but adb install old-app.apk says already installed.
Is this normal? Or do I have some package naming conflict or something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于任何给定的包,设备上只能有一个应用程序。如果您有 10 个应用程序都具有相同的软件包,则在任何给定时间只能安装一个。
Only one application can be on the device for any given package. If you have 10 apps all with the same package, only one can be installed at any given time.