如何让Android应用程序的进程名称与包名称不同?
我有一个带有一些包名称的 Android 应用程序。 (如 com.example.name) 但我想在进程中以其他名称(例如 com.example.othername)运行该应用程序。顺便说一句,我没有另一个包名为 com.example.othername 的应用程序。 我该如何实现这一目标?
I have an android app with some package name. (like com.example.name)
But I would like to run the app in a process under some other name (like com.example.othername). BTW, I do not have another app with package name com.example.othername.
How do I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能想使用
android:process
标记上的 > 属性。You probably want to use the
android:process
attribute on the<application>
tag in your manifest file.