aboutsummaryrefslogtreecommitdiff
path: root/dexmaker-mockito-inline-tests/build.gradle
blob: 4961c5e70807d616b34a7bbe6711abfc5028ffed (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
29
30
31
32
33
34
35
apply plugin: 'com.android.library'

android {
    compileSdkVersion 32

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

    defaultConfig {
        minSdkVersion 28
        targetSdkVersion 32

        testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
    }

    externalNativeBuild {
        cmake {
            path 'CMakeLists.txt'
        }
    }
}

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

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