xref: /aosp_15_r20/external/dexmaker/dexmaker-mockito-inline-extended-tests/build.gradle (revision 2ffc472c461b441c3ddd38c52c72da5a6be8f680)
1apply plugin: 'com.android.library'
2
3android {
4    compileSdkVersion 32
5
6    android {
7        lintOptions {
8            disable 'InvalidPackage'
9        }
10    }
11
12    defaultConfig {
13        minSdkVersion 28
14        targetSdkVersion 32
15
16        testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
17    }
18
19    compileOptions {
20        targetCompatibility 1.8
21        sourceCompatibility 1.8
22    }
23}
24
25dependencies {
26    implementation project(':dexmaker-mockito-inline-tests')
27    compileOnly project(':dexmaker-mockito-inline-extended')
28    androidTestImplementation project(':dexmaker-mockito-inline-extended')
29
30    implementation 'junit:junit:4.13.2'
31    implementation 'androidx.test:runner:1.4.0'
32    implementation 'androidx.test:rules:1.4.0'
33
34    api 'org.mockito:mockito-core:2.28.2', { exclude group: 'net.bytebuddy' }
35}
36