删除 Android 手机应用程序

发布于 2024-11-03 14:43:26 字数 112 浏览 0 评论 0原文

我已经获取了 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 技术交流群。

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

发布评论

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

评论(2

深海蓝天 2024-11-10 14:43:26

请删除

<category andorid:name="android.intent.category.LAUNCHER" />

packages/apps/Contacts/AndroidManifest.xml中的所有内容,我认为它会正常工作。

或者尝试删除 Contacts.apk(但这可能不起作用,因为您可能会再次崩溃。)

Please remove all

<category andorid:name="android.intent.category.LAUNCHER" />

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.)

灰色世界里的红玫瑰 2024-11-10 14:43:26

如果您想从手机中完全删除手机应用程序,只需删除 /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.

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