- Change repositoriesMode from FAIL_ON_PROJECT_REPOS to PREFER_SETTINGS - Remove 'time' from pip install (it's a built-in Python module) - Fixes workflow failures caused by repository configuration Made by Wiktor/overspend1
27 lines
658 B
Kotlin
27 lines
658 B
Kotlin
// CoreState-v2/settings.gradle.kts
|
|
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "CoreState-v2"
|
|
|
|
// Include application modules
|
|
include(":apps:android:androidApp")
|
|
include(":apps:android:shared")
|
|
|
|
// Include service modules
|
|
include(":services:backup-engine")
|
|
include(":services:analytics-engine")
|
|
// Add other service modules here as they are implemented |