mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-17 09:38:19 +00:00
35 lines
786 B
Groovy
35 lines
786 B
Groovy
plugins {
|
|
id 'com.android.library'
|
|
id 'org.jetbrains.kotlin.android'
|
|
id 'com.google.devtools.ksp'
|
|
}
|
|
|
|
android {
|
|
namespace "com.android.systemui.unfold"
|
|
buildFeatures {
|
|
aidl true
|
|
}
|
|
sourceSets {
|
|
main {
|
|
java.srcDirs = ['src']
|
|
aidl.srcDirs = ['src']
|
|
}
|
|
}
|
|
ksp {
|
|
arg("dagger.hilt.disableModulesHaveInstallInCheck", "true")
|
|
}
|
|
}
|
|
|
|
addFrameworkJar('framework-15.jar')
|
|
compileOnlyCommonJars()
|
|
|
|
dependencies {
|
|
implementation "com.google.dagger:hilt-android:$daggerVersion"
|
|
ksp "com.google.dagger:hilt-compiler:$daggerVersion"
|
|
|
|
implementation "androidx.concurrent:concurrent-futures:1.2.0"
|
|
implementation "androidx.lifecycle:lifecycle-common:2.8.7"
|
|
|
|
compileOnly projects.androidxLib
|
|
}
|