mirror of
https://github.com/mollyim/monero-wallet-sdk.git
synced 2025-05-12 13:20:34 +01:00
28 lines
591 B
Text
28 lines
591 B
Text
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"
|