xref: /aosp_15_r20/external/robolectric/testapp/build.gradle.kts (revision e6ba16074e6af37d123cb567d575f496bf0a58ee)

<lambda>null1 plugins { alias(libs.plugins.android.library) }
2 
<lambda>null3 android {
4   compileSdk = 34
5   namespace = "org.robolectric.testapp"
6 
7   defaultConfig {
8     minSdk = 21
9 
10     testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
11     vectorDrawables.useSupportLibrary = true
12   }
13 
14   lint {
15     abortOnError = false
16     targetSdk = 34
17   }
18 }
19