Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Dalvik (Androids JVM) support hot code replace?

Tags:

android

dalvik

I tried with as simple replacing as changing value of String, but it does not work. I tried running my test app in debug mode, but always get "Hot Code Replace Failed" warning message box. Some sources says that it works, but it is very limited and occasionaly ignore all changes, other says it doesn't work at all.

UPDATE: This behavior is exactly the same (does not work) on device and emulator.

like image 757
SuitUp Avatar asked Sep 24 '12 01:09

SuitUp


1 Answers

No. Dalvik does not support any sort of hot code replacement, regardless of whether it's on device or emulator.

like image 194
JesusFreke Avatar answered Sep 28 '22 06:09

JesusFreke