1apply plugin: 'com.android.library' 2 3android { 4 compileSdkVersion 32 5 6 android { 7 lintOptions { 8 disable 'InvalidPackage' 9 disable 'NewApi' 10 } 11 } 12 13 defaultConfig { 14 minSdkVersion 14 15 targetSdkVersion 32 16 17 testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' 18 } 19} 20 21dependencies { 22 compileOnly project(':dexmaker-mockito') 23 androidTestImplementation project(':dexmaker-mockito') 24 25 implementation 'androidx.test:runner:1.4.0' 26 implementation 'junit:junit:4.13.2' 27 api 'org.mockito:mockito-core:2.28.2', { exclude group: 'net.bytebuddy' } 28} 29