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