mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-03 17:36:49 +00:00
27 lines
541 B
Groovy
27 lines
541 B
Groovy
plugins {
|
|
alias(libs.plugins.android.library)
|
|
alias(libs.plugins.google.ksp)
|
|
}
|
|
|
|
android {
|
|
namespace "com.android.launcher3.concurrent"
|
|
sourceSets {
|
|
main {
|
|
java.srcDirs = ['src']
|
|
kotlin.srcDirs = ['src']
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation libs.javax.inject
|
|
implementation libs.google.guava
|
|
ksp libs.dagger.compiler
|
|
implementation libs.dagger.hilt.android
|
|
ksp libs.dagger.hilt.compiler
|
|
}
|
|
|
|
ksp {
|
|
arg("dagger.hilt.disableModulesHaveInstallInCheck", "true")
|
|
}
|