2022-08-08 18:41:57 +00:00
|
|
|
apply plugin: 'java-library'
|
|
|
|
apply plugin: 'kotlin'
|
2022-08-09 11:55:01 +00:00
|
|
|
apply plugin: 'com.android.lint'
|
2019-03-08 22:44:56 +00:00
|
|
|
|
2022-08-08 18:41:57 +00:00
|
|
|
java {
|
|
|
|
sourceCompatibility = javaVersion
|
|
|
|
targetCompatibility = javaVersion
|
2019-03-08 22:44:56 +00:00
|
|
|
}
|
|
|
|
|
2022-08-08 18:41:57 +00:00
|
|
|
dependencies {
|
2022-08-08 19:07:09 +00:00
|
|
|
api project(":mail:common")
|
2019-03-08 22:44:56 +00:00
|
|
|
}
|