Android Studio gradle-###-bin.zip vs. gradle-###-all.zip
Posted
by
Jeff Brateman
on Stack Overflow
See other posts from Stack Overflow
or by Jeff Brateman
Published on 2014-08-22T16:10:58Z
Indexed on
2014/08/22
22:21 UTC
Read the original article
Hit count: 539
One developer on my team has some setting in Android Studio that replaces the distributionUrl
entry in gradle/wrapper/gradle-wrapper.properties
to use the gradle-###-all.zip
, while my Android Studio changes it back to gradle-###-bin.zip
.
Basically, my diff always looks like:
-distributionUrl=https\://services.gradle.org/distributions/gradle-1.12-all.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-1.12-bin.zip
This is annoying. What setting is it, and how do I change it?
© Stack Overflow or respective owner