1 val tasksVersion = "16.0.1"
2 
3 project.configureAar()
4 
<lambda>null5 dependencies {
6     configureAarUnpacking()
7     api("com.google.android.gms:play-services-tasks:$tasksVersion") {
8         exclude(group="com.android.support")
9     }
10 
11     // Required by robolectric
12     testImplementation("androidx.test:core:1.2.0")
13     testImplementation("androidx.test:monitor:1.2.0")
14 }
15 
16 externalDocumentationLink(
17     url = "https://developers.google.com/android/reference/"
18 )
19