Reputation: 747
I have an Android app with one process and an always running service, on checking the running service I saw that my app has two running processes one for me and the other from chrome called "com.android.chrome:sandboxed_process0" , Anyone knows why this service is running inside my app?, I am thinking of Google Admob but I am not sure.
Upvotes: 4
Views: 8581
Reputation: 63
Are you running any webview inside your app. From android O onwards, webview rendering happens on a different process. The separate process should be the one which is handling your webview.
Upvotes: 0