mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-18 18:28:20 +00:00
41 lines
866 B
Groovy
41 lines
866 B
Groovy
plugins {
|
|
alias(libs.plugins.android.library)
|
|
alias(libs.plugins.kotlin.android)
|
|
alias(libs.plugins.google.ksp)
|
|
}
|
|
|
|
android {
|
|
namespace "com.android.systemui.shared"
|
|
buildFeatures {
|
|
aidl true
|
|
}
|
|
sourceSets {
|
|
main {
|
|
java.srcDirs = ['src']
|
|
aidl.srcDirs = ['src']
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
res.srcDirs = ['res']
|
|
}
|
|
}
|
|
}
|
|
|
|
ksp {
|
|
arg("dagger.hilt.disableModulesHaveInstallInCheck", "true")
|
|
}
|
|
|
|
addFrameworkJar('framework-15.jar')
|
|
compileOnlyCommonJars()
|
|
|
|
dependencies {
|
|
compileOnly projects.hiddenApi
|
|
compileOnly projects.unfold
|
|
compileOnly projects.plugin
|
|
compileOnly projects.plugincore
|
|
compileOnly projects.flags
|
|
|
|
implementation libs.hilt.android
|
|
ksp libs.hilt.compiler
|
|
|
|
implementation libs.androidx.concurrent.futures
|
|
}
|