Files
lawnchair/systemUILog/build.gradle
renovate[bot] 8661aa4225 Update dependency com.google.errorprone:error_prone_annotations to v2.30.0 (#4646)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-11 08:13:07 +08:00

28 lines
583 B
Groovy

plugins {
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
}
android {
namespace "com.android.systemui.log"
buildFeatures {
aidl true
}
sourceSets {
main {
java.srcDirs = ['src']
aidl.srcDirs = ['src']
manifest.srcFile 'AndroidManifest.xml'
}
}
}
addFrameworkJar('framework-14.jar')
compileOnlyCommonJars()
dependencies {
compileOnly projects.systemUIPluginCore
compileOnly projects.systemUICommon
implementation 'com.google.errorprone:error_prone_annotations:2.30.0'
}