aboutsummaryrefslogtreecommitdiff
path: root/dexmaker-mockito-tests/build.gradle
blob: 918f27719c7169cf503ef5fafba4ae95307a454a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
apply plugin: 'com.android.library'

android {
    compileSdkVersion 32

    android {
        lintOptions {
            disable 'InvalidPackage'
            disable 'NewApi'
        }
    }

    defaultConfig {
        minSdkVersion 14
        targetSdkVersion 32

        testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
    }
}

dependencies {
    compileOnly project(':dexmaker-mockito')
    androidTestImplementation project(':dexmaker-mockito')

    implementation 'androidx.test:runner:1.4.0'
    implementation 'junit:junit:4.13.2'
    api 'org.mockito:mockito-core:2.28.2', { exclude group: 'net.bytebuddy' }
}