mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-20 03:08:19 +00:00
26 lines
731 B
Groovy
26 lines
731 B
Groovy
// https://docs.gradle.com/enterprise/gradle-plugin/
|
|
plugins {
|
|
id "com.gradle.enterprise" version "3.10.3"
|
|
}
|
|
|
|
gradleEnterprise {
|
|
buildScan {
|
|
termsOfServiceUrl = "https://gradle.com/terms-of-service"
|
|
termsOfServiceAgree = "yes"
|
|
publishAlwaysIf(System.getenv("GITHUB_ACTIONS") == "true")
|
|
publishOnFailure()
|
|
}
|
|
}
|
|
|
|
include ':iconloaderlib'
|
|
project(':iconloaderlib').projectDir = new File(rootDir, 'platform_frameworks_libs_systemui/iconloaderlib')
|
|
|
|
include ':searchuilib'
|
|
project(':searchuilib').projectDir = new File(rootDir, 'platform_frameworks_libs_systemui/searchuilib')
|
|
|
|
include ':SystemUIShared'
|
|
include ':CompatLib'
|
|
include ':CompatLibVR'
|
|
include ':CompatLibVS'
|
|
include ':hidden-api'
|