mirror of
https://github.com/null2264/yokai.git
synced 2025-06-21 10:44:42 +00:00
They told me on 8th of July that AGP up to v8.6-alpha will be supported on next IDEA (for EAP, because of it is... at this point I think Ultimate Edition no longer worth it, at least for KMM developers) plugin release, let's see if they're telling the truth.
47 lines
1.2 KiB
Kotlin
47 lines
1.2 KiB
Kotlin
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
resolutionStrategy {
|
|
eachPlugin {
|
|
if (requested.id.id == "com.google.android.gms.oss-licenses-plugin") {
|
|
useModule("com.google.android.gms:oss-licenses-plugin:${requested.version}")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
versionCatalogs {
|
|
create("androidx") {
|
|
from(files("gradle/androidx.versions.toml"))
|
|
}
|
|
create("compose") {
|
|
from(files("gradle/compose.versions.toml"))
|
|
}
|
|
create("kotlinx") {
|
|
from(files("gradle/kotlinx.versions.toml"))
|
|
}
|
|
}
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
maven("https://jitpack.io")
|
|
maven("https://plugins.gradle.org/m2/")
|
|
}
|
|
}
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
rootProject.name = "Yokai"
|
|
include(":app")
|
|
include(":core")
|
|
include(":data")
|
|
include(":domain")
|
|
include(":i18n")
|
|
include(":presentation:core")
|
|
include(":presentation:widget")
|
|
include(":source-api")
|