Files
lawnchair/settings.gradle

26 lines
731 B
Groovy
Raw Normal View History

2022-08-10 17:37:14 +08:00
// 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()
}
}
2021-10-11 13:16:06 +07:00
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')
2021-06-03 10:55:06 +07:00
include ':SystemUIShared'
2021-10-10 11:46:32 +07:00
include ':CompatLib'
include ':CompatLibVR'
include ':CompatLibVS'
include ':hidden-api'