Auto-downloads a JDK toolchain over the network when the required version isn't installed locally, which conflicts with F-Droid's offline/reproducible build requirements and was flagged by their RFP scanner (https://gitlab.com/fdroid/rfp/-/work_items/4395#note_3827250669) as a network-access risk. Confirmed unused: no module in this project declares an explicit jvmToolchain, so it was inert KMP-wizard scaffolding to begin with. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01FXcrACM5sok3M1KQJ8kByy
33 lines
762 B
Kotlin
33 lines
762 B
Kotlin
rootProject.name = "SatsPrice"
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
google {
|
|
mavenContent {
|
|
includeGroupAndSubgroups("androidx")
|
|
includeGroupAndSubgroups("com.android")
|
|
includeGroupAndSubgroups("com.google")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
google {
|
|
mavenContent {
|
|
includeGroupAndSubgroups("androidx")
|
|
includeGroupAndSubgroups("com.android")
|
|
includeGroupAndSubgroups("com.google")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
include(":androidApp")
|
|
include(":desktopApp")
|
|
include(":shared")
|
|
include(":webApp") |