plugins { id 'com.android.library' id 'kotlin-android' } android { buildToolsVersion BUILD_TOOL_VERSION compileSdkVersion COMPILE_SDK defaultConfig { minSdkVersion MINIMUM_SDK targetSdkVersion TARGET_SDK multiDexEnabled true } compileOptions { coreLibraryDesugaringEnabled true sourceCompatibility JAVA_VERSION targetCompatibility JAVA_VERSION } kotlinOptions { jvmTarget = '1.8' } lintOptions { disable 'InvalidVectorPath' } } dependencies { lintChecks project(':lintchecks') implementation project(':core-util') coreLibraryDesugaring libs.android.tools.desugar implementation libs.androidx.core.ktx implementation libs.androidx.annotation implementation libs.androidx.appcompat api libs.google.play.services.wallet api libs.square.okhttp3 api libs.rxjava3.rxjava }