You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
392 B
16 lines
392 B
7 months ago
|
plugins {
|
||
|
id 'java-library'
|
||
|
id 'kotlin'
|
||
|
id 'kotlin-kapt'
|
||
|
}
|
||
|
|
||
|
java {
|
||
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
||
|
implementation "com.google.dagger:hilt-core:LOCAL-SNAPSHOT"
|
||
|
kapt "com.google.dagger:hilt-compiler:LOCAL-SNAPSHOT"
|
||
|
}
|