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

<lambda>null1*e6ba1607SAndroid Build Coastguard Worker plugins {
2*e6ba1607SAndroid Build Coastguard Worker   alias(libs.plugins.robolectric.deployed.java.module)
3*e6ba1607SAndroid Build Coastguard Worker   alias(libs.plugins.robolectric.java.module)
4*e6ba1607SAndroid Build Coastguard Worker   alias(libs.plugins.robolectric.shadows)
5*e6ba1607SAndroid Build Coastguard Worker }
6*e6ba1607SAndroid Build Coastguard Worker 
<lambda>null7*e6ba1607SAndroid Build Coastguard Worker shadows {
8*e6ba1607SAndroid Build Coastguard Worker   packageName = "org.robolectric.shadows.multidex"
9*e6ba1607SAndroid Build Coastguard Worker   sdkCheckMode = "OFF"
10*e6ba1607SAndroid Build Coastguard Worker }
11*e6ba1607SAndroid Build Coastguard Worker 
<lambda>null12*e6ba1607SAndroid Build Coastguard Worker dependencies {
13*e6ba1607SAndroid Build Coastguard Worker   compileOnly(project(":shadows:framework"))
14*e6ba1607SAndroid Build Coastguard Worker   api(project(":annotations"))
15*e6ba1607SAndroid Build Coastguard Worker 
16*e6ba1607SAndroid Build Coastguard Worker   compileOnly(AndroidSdk.MAX_SDK.coordinates)
17*e6ba1607SAndroid Build Coastguard Worker 
18*e6ba1607SAndroid Build Coastguard Worker   testImplementation(project(":robolectric"))
19*e6ba1607SAndroid Build Coastguard Worker }
20