Android 应用程序列表中存在多个同名应用程序
我一直通过 eclipse 将 apk 加载到我的手机上,我注意到列表中有一堆同名的应用程序。是什么导致启动器多次列出该应用程序?我怎样才能避免这种情况?
I have been loading apks onto my phone via eclipse and I notice that I have a bunch of apps in the list with the very same name. What causes the launcher to list the application multiple times? And how can I avoid this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能拥有相同名称的应用程序,但它们具有不同的命名空间。
com.example.myDemoApp 名为 AppDemo
com.example.DemoApp 名为 AppDemo
com.wtf.SpinnerTest 名为 AppDemo
这是我最好的猜测。
You probably have the apps named the same, but they have different namespaces.
com.example.myDemoApp named AppDemo
com.example.DemoApp named AppDemo
com.wtf.SpinnerTest named AppDemo
That's my best guess.