I am building an android app with android studio.
In the process I am also implementing facebook login, which requires me to put a folder's worth of code into my project, among other compile-time libraries.
Each time that I compile (and run) my app while testing it, it is currently taking 3 minutes to compile!
I want to know if there is a way to specify that unmodified classes do not need to be recompiled? I am trying to speed up my build time so that I can be more productive.
Any other advice on how to make my project build faster for testing / debugging / release?
Thanks.
In gradle.properties
, add the following two lines:
org.gradle.daemon=true
org.gradle.parallel=true
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With