12 lines
221 B
Groovy
12 lines
221 B
Groovy
apply plugin: 'java-library'
|
|
apply plugin: 'kotlin'
|
|
apply plugin: 'com.android.lint'
|
|
|
|
java {
|
|
sourceCompatibility = javaVersion
|
|
targetCompatibility = javaVersion
|
|
}
|
|
|
|
dependencies {
|
|
api project(":mail:common")
|
|
}
|