blob: 9f8a1287031cc36f90954a2524122282e2a3c9f6 [file] [log] [blame]
Aurimas Liutikas79e555e2021-05-17 17:41:41 +00001/*
2 * Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3 */
4
5val tasksVersion = "16.0.1"
6
Steve Elliottca095be2022-07-25 14:26:10 +00007project.configureAar()
Aurimas Liutikas79e555e2021-05-17 17:41:41 +00008
9dependencies {
Steve Elliottca095be2022-07-25 14:26:10 +000010 configureAarUnpacking()
Aurimas Liutikas79e555e2021-05-17 17:41:41 +000011 api("com.google.android.gms:play-services-tasks:$tasksVersion") {
12 exclude(group="com.android.support")
13 }
Steve Elliottca095be2022-07-25 14:26:10 +000014
15 // Required by robolectric
16 testImplementation("androidx.test:core:1.2.0")
17 testImplementation("androidx.test:monitor:1.2.0")
Aurimas Liutikas79e555e2021-05-17 17:41:41 +000018}
19
20externalDocumentationLink(
21 url = "https://developers.google.com/android/reference/"
22)