Is it possible to start a native android executable file outside of zygote?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.