在 zygote 之外运行本机 android 可执行文件
是否可以在 zygote 之外启动本机 android 可执行文件?
Is it possible to start a native android executable file outside of zygote?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现在我的本机应用程序中使用以下代码对您的应用程序进行守护进程会使其与 zygote 分离。
我不太确定它是否真的与 zygote 分离,但这就是 pstree 向我展示的内容。唯一的缺点是所有输出将不再被打印。就我而言,我不需要向用户打印任何内容,所以这很好。
I found out that daemonizing your application using the below code in my native application makes it detach from zygote.
I'm not really sure if it really is detached from zygote but that's what pstree shows me. The only downside is that all output will not be printed anymore. In my case I don't need to print anything to the user so that is fine.