删除 Android 手机应用程序
我已经获取了 android 2.1 的代码,我想从中删除手机应用程序。但我无法删除它。首先,我想从启动器中删除它,它不应该在启动器中可见,但在电话应用程序的清单文件中,我无法找到启动器类别。我不知道该怎么办?
I have source the code of android 2.1, and I want to remove phone app from it. But I am not able to remove it. At list first I want to remove it from launcher that it should not be visible in launcher but in manifest file of Phone app I can not able to find launcher category. I don't know what to do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请删除
packages/apps/Contacts/AndroidManifest.xml中的所有内容,我认为它会正常工作。
或者尝试删除 Contacts.apk(但这可能不起作用,因为您可能会再次崩溃。)
Please remove all
in packages/apps/Contacts/AndroidManifest.xml, I think it will work fine.
Or try to remove Contacts.apk (but this may not work because you may get crash again.)
如果您想从手机中完全删除手机应用程序,只需删除
/system/app/Phone.apk
即可。如果您想编译一个不在启动器中显示手机应用程序的框架,那么您将需要修改启动器,而不是手机应用程序。If you want to remove the phone app completely from your phone, then it's as easy as deleting
/system/app/Phone.apk
. If you want to compile a framework that does not show the phone app in the launcher, then you will need to modify the launcher, not the phone app.