mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-27 15:26:58 +00:00
36 lines
817 B
Groovy
36 lines
817 B
Groovy
plugins {
|
|
id 'com.android.library'
|
|
id 'org.jetbrains.kotlin.android'
|
|
id 'com.google.devtools.ksp'
|
|
}
|
|
|
|
android {
|
|
buildToolsVersion "35.0.1"
|
|
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.3.0"
|
|
implementation "androidx.lifecycle:lifecycle-common:2.9.4"
|
|
|
|
compileOnly projects.androidxLib
|
|
}
|