2020-04-25 14:30:14 -04:00
|
|
|
pluginManagement {
|
|
|
|
resolutionStrategy {
|
|
|
|
eachPlugin {
|
2022-03-04 09:58:31 -05:00
|
|
|
val regex = "com.android.(library|application)".toRegex()
|
|
|
|
if (regex matches requested.id.id) {
|
2020-04-25 14:30:14 -04:00
|
|
|
useModule("com.android.tools.build:gradle:${requested.version}")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
2022-11-26 08:11:15 -05:00
|
|
|
maven(url = "https://www.jitpack.io")
|
2020-04-25 14:30:14 -04:00
|
|
|
}
|
2024-06-16 18:53:02 -04:00
|
|
|
// https://issuetracker.google.com/344363457
|
|
|
|
// TODO: Remove when AGP's bundled R8 is updated
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
maven("https://storage.googleapis.com/r8-releases/raw")
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath("com.android.tools:r8:8.5.21")
|
|
|
|
}
|
|
|
|
}
|
2020-04-25 14:30:14 -04:00
|
|
|
}
|
|
|
|
|
2022-03-04 09:58:31 -05:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
versionCatalogs {
|
|
|
|
create("kotlinx") {
|
|
|
|
from(files("gradle/kotlinx.versions.toml"))
|
|
|
|
}
|
|
|
|
create("androidx") {
|
|
|
|
from(files("gradle/androidx.versions.toml"))
|
|
|
|
}
|
2022-04-22 17:29:24 -04:00
|
|
|
create("compose") {
|
|
|
|
from(files("gradle/compose.versions.toml"))
|
|
|
|
}
|
2022-03-04 09:58:31 -05:00
|
|
|
}
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
google()
|
|
|
|
maven(url = "https://www.jitpack.io")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-23 07:35:58 -05:00
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
|
2024-01-15 14:31:22 -05:00
|
|
|
rootProject.name = "Mihon"
|
2020-01-28 22:48:02 -05:00
|
|
|
include(":app")
|
2024-01-29 04:11:28 -05:00
|
|
|
include(":core-metadata")
|
|
|
|
include(":core:common")
|
2023-01-21 10:37:07 -05:00
|
|
|
include(":data")
|
2023-01-22 10:12:29 -05:00
|
|
|
include(":domain")
|
2024-01-29 04:11:28 -05:00
|
|
|
include(":i18n")
|
|
|
|
include(":macrobenchmark")
|
2023-01-26 17:53:24 -05:00
|
|
|
include(":presentation-core")
|
2024-01-29 04:11:28 -05:00
|
|
|
include(":presentation-widget")
|
|
|
|
include(":source-api")
|
2023-02-26 16:16:49 -05:00
|
|
|
include(":source-local")
|