android studio中的测试支持库没有编译

时间:2016-08-26 13:03:45

标签: android unit-testing gradle android-testing

我的SDK中安装了最新的支持库。 gradle文件

        defaultConfig {
            applicationId "com.example.win.dat_2"
            minSdkVersion 19
            targetSdkVersion 23
            versionCode 1
            versionName "1.0"
        }


        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
        }
    }

    dependencies { 
        compile fileTree(dir: 'libs', include: ['*.jar']) 
        compile 'com.android.support:appcompat-v7:23.1.1'
        androidTestCompile('com.android.support.test.espresso:espres‌​so-core:2.2.2', { 
exclude group: 'com.android.support', module: 'support-annotations' }) 
    }

1 个答案:

答案 0 :(得分:0)

在app gradle中将此添加到defaultConfig

multiDexEnabled = true