mirror of
https://github.com/iSoron/uhabits.git
synced 2025-12-14 04:58:52 -06:00
33 lines
904 B
Kotlin
33 lines
904 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
include(":uhabits-android", ":uhabits-core")
|
|
dependencyResolutionManagement {
|
|
@Suppress("UnstableApiUsage")
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
maven(url = "https://plugins.gradle.org/m2/")
|
|
maven(url = "https://oss.sonatype.org/content/repositories/snapshots/")
|
|
maven(url = "https://jitpack.io")
|
|
}
|
|
}
|
|
|
|
include(":uhabits-android", ":uhabits-core")
|