9 ms·
parent didn't write "they already finished merging the platforms"
by bookwormAT 12y ago
parent didn't write "they already finished merging the platforms"
- cwyers 12y agoRight now this is a very Parallels sort of solution, where you run the app in a VM. No actual merging of anything is going on, there's just a runtime that lets you run Android apps on ChromeOS, looking like they do on Android.
- ucsdrake 12y agoI think it's likely that they're writing a runtime for dalvik to run on chromeOS, which, is essentially 'merging' though now you're just arguing semantics.
- fluidcruft 12y ago(Dalvik is dead. You probably mean ART.)
- jmgrosen 12y agoDalvik the runtime is dead. Dalvik the bytecode is not.
- snlacks 12y agoAren't Android apps run in a virtual machine (because of the Java roots) anyway? (Genuine question, not me being a smarty pants.)
- ahomescu1 12y ago"Virtual Machine" is an overloaded term. It can either mean virtualization of an existing CPU (like the x86), or of an abstract bytecode machine (like the JVM or Dalvik). In the former case, you have to efficiently virtualize/emulate an entire system (including stuff like hardware devices and CPU interrupts); in the latter, you only have to execute the bytecode program well, which most VMs of this sort compile just-in-time (they compile the bytecode program into a native equivalent at execution time).