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

Added basic tools screen Added epoch converter screen Little refactor to avoid code duplication
28 lines
599 B
Plaintext
28 lines
599 B
Plaintext
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 = "Unitto"
|
|
include(":app")
|
|
include(":data")
|
|
include(":core:base")
|
|
include(":core:ui")
|
|
include(":feature:converter")
|
|
include(":feature:unitslist")
|
|
include(":feature:settings")
|
|
include(":feature:tools")
|
|
include(":feature:epoch")
|