Android 上的动态包名称
我想使用某些脚本或其他方式在运行时更改我的应用程序包名称。但不知道在android上是否可行。
有人可以帮助我实现同样的目标吗?
提前致谢。
I want to change my application package name at run time using some script or some other way. But I don't know whether it is feasible in android or not.
Can anybody help me out to achieve the same?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法动态更改应用程序的包名称。您的包名称基本上就是 Android 用于识别您的应用程序的 ID。此外,它几乎“烧录”到了 APK 中,因此更改它的唯一方法是打开 APK 并在其中进行更改。然而,这可能需要 root。
You can't dynamically change the package name of your application. Your package name is basically the ID Android uses to identify your application. Also, it's pretty much "burned" into the APK, so the only way to change it would be to open up the APK and change it in there. However, that would probably require root.