kee-wallet/settings.gradle.kts

25 lines
540 B
Text
Raw Normal View History

2024-03-06 03:25:43 +00:00
rootProject.name = "Kee"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
google()
gradlePluginPortal()
mavenCentral()
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
2024-04-29 02:42:05 +00:00
include(":app")
include(":shared:crypto")
include(":library:preferences")
include(":shared:stargate")