mirror of
https://github.com/avinal/nikki.git
synced 2026-07-03 21:40:09 +05:30
28 lines
707 B
Kotlin
28 lines
707 B
Kotlin
|
|
pluginManagement {
|
||
|
|
repositories {
|
||
|
|
google {
|
||
|
|
content {
|
||
|
|
includeGroupByRegex("com\\.android.*")
|
||
|
|
includeGroupByRegex("com\\.google.*")
|
||
|
|
includeGroupByRegex("androidx.*")
|
||
|
|
}
|
||
|
|
}
|
||
|
|
mavenCentral()
|
||
|
|
gradlePluginPortal()
|
||
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencyResolutionManagement {
|
||
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
||
|
|
repositories {
|
||
|
|
google()
|
||
|
|
mavenCentral()
|
||
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
rootProject.name = "MemosApp"
|
||
|
|
include(":composeApp")
|
||
|
|
include(":androidApp")
|