mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-06 02:37:26 +01:00
53 lines
1.3 KiB
Plaintext
53 lines
1.3 KiB
Plaintext
pluginManagement {
|
|
resolutionStrategy {
|
|
eachPlugin {
|
|
val regex = "com.android.(library|application)".toRegex()
|
|
if (regex matches requested.id.id) {
|
|
useModule("com.android.tools.build:gradle:${requested.version}")
|
|
}
|
|
}
|
|
}
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
maven(url = "https://www.jitpack.io")
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
versionCatalogs {
|
|
create("kotlinx") {
|
|
from(files("gradle/kotlinx.versions.toml"))
|
|
}
|
|
create("androidx") {
|
|
from(files("gradle/androidx.versions.toml"))
|
|
}
|
|
create("compose") {
|
|
from(files("gradle/compose.versions.toml"))
|
|
}
|
|
}
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
maven(url = "https://www.jitpack.io")
|
|
}
|
|
}
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
rootProject.name = "Mihon"
|
|
include(":app")
|
|
include(":core-metadata")
|
|
include(":core:archive")
|
|
include(":core:common")
|
|
include(":data")
|
|
include(":domain")
|
|
include(":i18n")
|
|
include(":macrobenchmark")
|
|
include(":presentation-core")
|
|
include(":presentation-widget")
|
|
include(":source-api")
|
|
include(":source-local")
|