Files
lawnchair/systemUI/shared/build.gradle

40 lines
937 B
Groovy
Raw Normal View History

plugins {
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
2024-11-02 10:45:09 +08:00
id 'com.google.devtools.ksp'
}
2021-06-03 10:55:06 +07:00
android {
namespace "com.android.systemui.shared"
buildFeatures {
aidl true
}
2021-06-03 10:55:06 +07:00
sourceSets {
main {
java.srcDirs = ['src']
aidl.srcDirs = ['src']
manifest.srcFile 'AndroidManifest.xml'
res.srcDirs = ['res']
}
}
2024-11-02 10:45:09 +08:00
ksp {
arg("dagger.hilt.disableModulesHaveInstallInCheck", "true")
}
2021-06-03 10:55:06 +07:00
}
2024-10-06 17:33:30 +08:00
addFrameworkJar('framework-15.jar')
compileOnlyCommonJars()
2021-06-03 10:55:06 +07:00
dependencies {
2023-09-21 21:54:56 +08:00
compileOnly projects.hiddenApi
compileOnly projects.unfold
compileOnly projects.plugin
compileOnly projects.plugincore
2024-11-02 10:45:09 +08:00
compileOnly projects.flags
implementation "com.google.dagger:hilt-android:$daggerVersion"
2024-11-02 10:45:09 +08:00
ksp "com.google.dagger:hilt-compiler:$daggerVersion"
implementation "androidx.concurrent:concurrent-futures:1.2.0"
2021-06-03 10:55:06 +07:00
}