File tree 2 files changed +8
-4
lines changed
integration/kotlinx-coroutines-play-services
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,15 @@ allprojects {
52
52
kotlin_version = ' 1.2-SNAPSHOT'
53
53
}
54
54
55
+ def name = it. name
55
56
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
+ }
56
64
jcenter()
57
65
maven { url " https://kotlin.bintray.com/kotlin-eap" }
58
66
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
9
9
10
10
ext. tasks_version = ' 15.0.1'
11
11
12
- repositories {
13
- google()
14
- }
15
-
16
12
def attr = Attribute . of(" artifactType" , String . class)
17
13
configurations {
18
14
aar {
You can’t perform that action at this time.
0 commit comments