mirror of
https://github.com/Myzel394/NumberHub.git
synced 2025-06-18 16:25:27 +02:00

Hidden as "tools experiment" Missing: - Clean data - Translations - UI/UX clean up - Relative time change functionality - Custom user time zone functionality closes #59 this is a squashed commit
39 lines
911 B
Plaintext
39 lines
911 B
Plaintext
pluginManagement {
|
|
includeBuild("build-logic")
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
@Suppress("UnstableApiUsage")
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven(url = "https://jitpack.io")
|
|
}
|
|
}
|
|
rootProject.name = "Unitto"
|
|
include(":app")
|
|
include(":data:units")
|
|
include(":core:base")
|
|
include(":core:ui")
|
|
include(":feature:converter")
|
|
include(":feature:unitslist")
|
|
include(":feature:calculator")
|
|
include(":feature:datedifference")
|
|
include(":feature:timezone")
|
|
include(":feature:settings")
|
|
include(":data:userprefs")
|
|
include(":data:licenses")
|
|
// include(":data:epoch")
|
|
include(":data:calculator")
|
|
include(":data:database")
|
|
include(":data:model")
|
|
include(":data:common")
|
|
include(":data:evaluatto")
|
|
include(":data:timezone")
|