virtual machine - How many VM are started on Android after boot? -


android dev guide says "every android application runs in own process, own instance of dalvik virtual machine.". how many vms (on 2.3/3.0) started after boot (if default apps initiated)?

so how many vms (on 2.3/3.0) started after boot

some number greater or equal 1.

the exact number depend on:

  • what software came preinstalled on device
  • what software user installed
  • what version of android is
  • possibly other hardware-specific or user-specific characteristics (e.g., selected input method)

you welcome use ddms examine emulator , count configuration, of listed processes have dalvik vms.

(if default apps initiated)

there no concept in android of "default apps".


Comments

Popular posts from this blog

Javascript line number mapping -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -