普通文本  |  33行  |  658 B

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.0"

    lintOptions {
        abortOnError false
    }

    defaultConfig {
        applicationId "com.android.dexmaker.mockito.tests"
        minSdkVersion 25
        targetSdkVersion 25
        versionName VERSION_NAME

        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
}

repositories {
    jcenter()
    google()
}

dependencies {
    compile project(':dexmaker')
    compile project(':dexmaker-mockito')

    androidTestCompile 'com.android.support.test:runner:0.5'
    androidTestCompile 'junit:junit:4.12'
}