mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-20 03:08:19 +00:00
52 lines
1.3 KiB
Groovy
52 lines
1.3 KiB
Groovy
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
resolutionStrategy {
|
|
eachPlugin {
|
|
// https://github.com/google/play-services-plugins/issues/223
|
|
if (requested.id.id == "com.google.android.gms.oss-licenses-plugin") {
|
|
useModule("com.google.android.gms:oss-licenses-plugin:${requested.version}")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// https://docs.gradle.com/enterprise/gradle-plugin/
|
|
plugins {
|
|
id "com.gradle.enterprise" version "3.11.1"
|
|
}
|
|
|
|
gradleEnterprise {
|
|
buildScan {
|
|
termsOfServiceUrl = "https://gradle.com/terms-of-service"
|
|
termsOfServiceAgree = "yes"
|
|
publishAlways()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
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'
|