Files
Lawnchair/systemUI/log/build.gradle
T
Pun Butrach 11f7abcb66 chore: Cleanup, and hidden feature logged
Signed-off-by: Pun Butrach <pun.butrach@gmail.com>
2026-01-10 20:48:25 +07:00

29 lines
578 B
Groovy

plugins {
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
}
android {
buildToolsVersion "36.1.0"
namespace "com.android.systemui.log"
buildFeatures {
aidl true
}
sourceSets {
main {
java.srcDirs = ['src']
aidl.srcDirs = ['src']
manifest.srcFile 'AndroidManifest.xml'
}
}
}
addFrameworkJar('framework-16.jar')
compileOnlyCommonJars()
dependencies {
compileOnly projects.plugincore
compileOnly projects.common
implementation libs.google.errorprone.annotations
}