• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3  */
4 
5 project.configureAar()
6 
<lambda>null7 dependencies {
8     configureAarUnpacking()
9 
10     testImplementation("com.google.android:android:${version("android")}")
11     testImplementation("org.robolectric:robolectric:${version("robolectric")}")
12     // Required by robolectric
13     testImplementation("androidx.test:core:1.2.0")
14     testImplementation("androidx.test:monitor:1.2.0")
15 
16     testImplementation(project(":kotlinx-coroutines-test"))
17     testImplementation(project(":kotlinx-coroutines-android"))
18 }
19