This is a test if updates work
This commit is contained in:
Felitendo
2025-05-20 15:23:42 +02:00
parent e65e82c85b
commit ddff25a7c4
465 changed files with 37626 additions and 0 deletions

30
settings.gradle.kts Normal file
View File

@@ -0,0 +1,30 @@
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven(url = "https://jitpack.io")
}
}
rootProject.name = "Droid-ify"
include(
":app",
":core:common",
":core:data",
":core:database",
":core:datastore",
":core:di",
":core:domain",
":core:network",
":installer",
":sync:fdroid",
)