aboutsummaryrefslogtreecommitdiff
path: root/dexmaker-mockito-inline/build.gradle
blob: 54e85ec30a1a8a588639be6f8225398c9cbf600e (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
apply plugin: 'com.android.library'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.0"

    lintOptions {
        abortOnError false
    }

    defaultConfig {
        minSdkVersion 25
        targetSdkVersion 25
        versionName VERSION_NAME
    }

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

}

repositories {
    jcenter()
}

dependencies {
    compile project(':dexmaker')
    compile 'org.mockito:mockito-core:2.12.0'
}