1apply plugin: 'com.android.application' 2 3android { 4 compileSdkVersion 25 5 buildToolsVersion "25.0.0" 6 7 lintOptions { 8 abortOnError false 9 } 10 11 defaultConfig { 12 applicationId "com.android.dexmaker.mockito.tests" 13 minSdkVersion 25 14 targetSdkVersion 25 15 versionName VERSION_NAME 16 17 testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 18 } 19} 20 21repositories { 22 jcenter() 23 google() 24} 25 26dependencies { 27 compile project(':dexmaker') 28 compile project(':dexmaker-mockito') 29 30 androidTestCompile 'com.android.support.test:runner:0.5' 31 androidTestCompile 'junit:junit:4.12' 32} 33