mirror of
https://github.com/mollyim/monero-wallet-sdk.git
synced 2024-10-01 03:45:36 -04:00
24 lines
478 B
Groovy
24 lines
478 B
Groovy
|
pluginManagement {
|
||
|
repositories {
|
||
|
gradlePluginPortal()
|
||
|
google()
|
||
|
mavenCentral()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencyResolutionManagement {
|
||
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
||
|
repositories {
|
||
|
google()
|
||
|
mavenCentral()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
includeProject(':lib', 'lib/android')
|
||
|
includeProject(':demo', 'demo/android')
|
||
|
|
||
|
def includeProject(String name, String filePath) {
|
||
|
include(name)
|
||
|
project(name).projectDir = file(filePath)
|
||
|
}
|