kee-wallet/settings.gradle.kts
2024-04-29 09:13:51 -07:00

24 lines
542 B
Text

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")
}
}
include(":app")
include(":library:crypto")
include(":library:preferences")
include(":library:stargate")