Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Zygote: isWhitelistProcess - Process is Whitelisted

Tags:

android

logcat

App is running without problems, but in Logcat I see this error:

Zygote: isWhitelistProcess - Process is Whitelisted
libpersona: scanKnoxPersonas
libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory
zygote64: Dex checksum does not match for dex: /data/data/com.mantas.vaistai/files/instant-run/dex-temp/reload0x0000.dex.Expected: 1592914573, actual: 1910341331

What does Zygote mean? Is it something serious? Do I have to pay attention to it?

like image 915
Mantaz Avatar asked Dec 02 '18 10:12

Mantaz


1 Answers

TL;DR: it's caused by Instant Run an shouldn't happen in release build.

Zygote is the init-process for Android, it simplifies runtime loading for applications by preloading their parts at boot and sharing with apps that are started later.

Zygote: isWhitelistProcess - Process is Whitelisted is not actualy an error, just log notification that current process is whitelisted for permissions checks.

Information about checksum error message you receive is described here: https://stackoverflow.com/a/51298020

like image 146
Pavlus Avatar answered Nov 05 '22 20:11

Pavlus