mirror of
https://github.com/mollyim/monero-wallet-sdk.git
synced 2025-04-18 06:45:47 -04:00
29 lines
591 B
Plaintext
29 lines
591 B
Plaintext
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android(\\..*)?")
|
|
includeGroupByRegex("com\\.google(\\..*)?")
|
|
includeGroupByRegex("androidx?(\\..*)?")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
}
|
|
versionCatalogs {
|
|
create("libs") {
|
|
from(files("../gradle/libs.versions.toml"))
|
|
}
|
|
}
|
|
}
|
|
|
|
include(":plugins")
|
|
|
|
rootProject.name = "build-logic"
|