apply plugin: 'com.android.library' apply plugin: 'kotlin-android' android { compileSdkVersion COMPILE_SDK_VERSION as Integer defaultConfig { minSdkVersion MIN_SDK_VERSION as Integer targetSdkVersion TARGET_SDK_VERSION as Integer buildConfigField 'int', 'VERSION_CODE', "$VERSION_CODE" buildConfigField 'String', 'VERSION_NAME', "\"$VERSION_NAME\"" } compileOptions { targetCompatibility JavaVersion.VERSION_1_8 sourceCompatibility JavaVersion.VERSION_1_8 } lintOptions { checkReleaseBuilds false abortOnError false } } dependencies { implementation "com.google.dagger:dagger:$DAGGER_VERSION" implementation 'com.google.android.material:material:1.0.0' implementation 'androidx.appcompat:appcompat:1.0.0' implementation "org.apache.commons:commons-lang3:3.5" annotationProcessor "com.google.dagger:dagger-compiler:$DAGGER_VERSION" implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$KOTLIN_VERSION" }