1buildscript { 2 repositories { 3 maven { 4 url "https://plugins.gradle.org/m2/" 5 } 6 } 7 dependencies { 8 classpath "net.ltgt.gradle:gradle-errorprone-plugin:0.0.13" 9 } 10} 11 12apply plugin: "net.ltgt.errorprone" 13apply plugin: 'com.android.application' 14 15android { 16 compileSdkVersion 28 17 buildToolsVersion '28.0.3' 18 19 defaultConfig { 20 applicationId 'com.linkedin.dexmaker' 21 minSdkVersion 8 22 targetSdkVersion 28 23 versionCode 1 24 versionName VERSION_NAME 25 26 testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' 27 } 28} 29 30repositories { 31 jcenter() 32 google() 33} 34 35dependencies { 36 implementation project(":dexmaker") 37 38 //noinspection GradleDependency 39 androidTestImplementation 'com.android.support.test:runner:0.5' 40 androidTestImplementation 'junit:junit:4.12' 41} 42