File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
integration/kotlinx-coroutines-play-services Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,15 @@ allprojects {
5252 kotlin_version = ' 1.2-SNAPSHOT'
5353 }
5454
55+ def name = it. name
5556 repositories {
57+ /*
58+ * google should be first in the repository list because some of the play services
59+ * transitive dependencies was removed from jcenter, thus breaking gradle dependency resolution
60+ */
61+ if (name == " kotlinx-coroutines-play-services" ) {
62+ google()
63+ }
5664 jcenter()
5765 maven { url " https://kotlin.bintray.com/kotlin-eap" }
5866 maven { url " https://kotlin.bintray.com/kotlinx" }
Original file line number Diff line number Diff line change @@ -9,10 +9,6 @@ import java.util.zip.ZipFile
99
1010ext. tasks_version = ' 15.0.1'
1111
12- repositories {
13- google()
14- }
15-
1612def attr = Attribute . of(" artifactType" , String . class)
1713configurations {
1814 aar {
You can’t perform that action at this time.
0 commit comments