Often I'm making some small changes, within one file, not touching 99% of the code. For example: small refactoring, tweaking parameters, layouts, animations. Changes which take couple of seconds. I just want to quickly experiment with many options and see what is the best.
There is a huge problem - recompilation and deploying time. I waste my time and lose my focus, which dramatically increases total tweaking time - from seconds of actual work to minutes (hours?), because of waiting and constant distractions. It's also annoying and doesn't encourage to experiment more.
I've heard about DyCI - Dynamic Code Injection, which does exactly what I want - "change your code and see the results right away". But, it's for iOS.
Is it possible to change the code and see the results right away on Android? How?