23 lines
558 B
Plaintext
23 lines
558 B
Plaintext
/*
|
|
* Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
|
|
*/
|
|
|
|
val tasksVersion = "16.0.1"
|
|
|
|
project.configureAar()
|
|
|
|
dependencies {
|
|
configureAarUnpacking()
|
|
api("com.google.android.gms:play-services-tasks:$tasksVersion") {
|
|
exclude(group="com.android.support")
|
|
}
|
|
|
|
// Required by robolectric
|
|
testImplementation("androidx.test:core:1.2.0")
|
|
testImplementation("androidx.test:monitor:1.2.0")
|
|
}
|
|
|
|
externalDocumentationLink(
|
|
url = "https://developers.google.com/android/reference/"
|
|
)
|