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

<lambda>null1*e6ba1607SAndroid Build Coastguard Worker plugins {
2*e6ba1607SAndroid Build Coastguard Worker   alias(libs.plugins.android.library)
3*e6ba1607SAndroid Build Coastguard Worker   alias(libs.plugins.robolectric.android.project)
4*e6ba1607SAndroid Build Coastguard Worker }
5*e6ba1607SAndroid Build Coastguard Worker 
<lambda>null6*e6ba1607SAndroid Build Coastguard Worker android {
7*e6ba1607SAndroid Build Coastguard Worker   compileSdk = 34
8*e6ba1607SAndroid Build Coastguard Worker   namespace = "org.robolectric.integrationtests.androidx"
9*e6ba1607SAndroid Build Coastguard Worker 
10*e6ba1607SAndroid Build Coastguard Worker   defaultConfig { minSdk = 21 }
11*e6ba1607SAndroid Build Coastguard Worker 
12*e6ba1607SAndroid Build Coastguard Worker   compileOptions {
13*e6ba1607SAndroid Build Coastguard Worker     sourceCompatibility = JavaVersion.VERSION_1_8
14*e6ba1607SAndroid Build Coastguard Worker     targetCompatibility = JavaVersion.VERSION_1_8
15*e6ba1607SAndroid Build Coastguard Worker   }
16*e6ba1607SAndroid Build Coastguard Worker 
17*e6ba1607SAndroid Build Coastguard Worker   testOptions {
18*e6ba1607SAndroid Build Coastguard Worker     targetSdk = 34
19*e6ba1607SAndroid Build Coastguard Worker     unitTests.isIncludeAndroidResources = true
20*e6ba1607SAndroid Build Coastguard Worker   }
21*e6ba1607SAndroid Build Coastguard Worker }
22*e6ba1607SAndroid Build Coastguard Worker 
<lambda>null23*e6ba1607SAndroid Build Coastguard Worker dependencies {
24*e6ba1607SAndroid Build Coastguard Worker   implementation(libs.kotlinx.coroutines.android)
25*e6ba1607SAndroid Build Coastguard Worker   implementation(libs.androidx.appcompat)
26*e6ba1607SAndroid Build Coastguard Worker   implementation(libs.androidx.window)
27*e6ba1607SAndroid Build Coastguard Worker 
28*e6ba1607SAndroid Build Coastguard Worker   // Testing dependencies
29*e6ba1607SAndroid Build Coastguard Worker   testImplementation(project(":testapp"))
30*e6ba1607SAndroid Build Coastguard Worker   testImplementation(project(":robolectric"))
31*e6ba1607SAndroid Build Coastguard Worker   testImplementation(libs.junit4)
32*e6ba1607SAndroid Build Coastguard Worker   testImplementation(libs.androidx.test.core)
33*e6ba1607SAndroid Build Coastguard Worker   testImplementation(libs.androidx.core)
34*e6ba1607SAndroid Build Coastguard Worker   testImplementation(libs.androidx.test.runner)
35*e6ba1607SAndroid Build Coastguard Worker   testImplementation(libs.androidx.test.rules)
36*e6ba1607SAndroid Build Coastguard Worker   testImplementation(libs.androidx.test.espresso.intents)
37*e6ba1607SAndroid Build Coastguard Worker   testImplementation(libs.androidx.test.ext.truth)
38*e6ba1607SAndroid Build Coastguard Worker   testImplementation(libs.androidx.test.ext.junit)
39*e6ba1607SAndroid Build Coastguard Worker   testImplementation(libs.truth)
40*e6ba1607SAndroid Build Coastguard Worker }
41