Reputation: 29168
If we use gradle clean build
, it will create a daemon. On the other hand, if we clean or build through Android studio, it also generates another daemon.
So, How can we make daemons compatible?
Upvotes: 1
Views: 102
Reputation: 29168
Actually, there are two main reasons to be incompatible.
How can we make daemon compatible?
If we use the local java in Android Studio instead of embedded JDK, this issue will be solved.
Project Structure -> SDK location
.First Part:
Second Part:
Upvotes: 2