2023-12-29 17:38:23 +01:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
resolutionStrategy {
|
|
|
|
eachPlugin {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
plugins {
|
2024-12-02 10:05:43 +01:00
|
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "0.9.0"
|
2023-12-29 17:38:23 +01:00
|
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
maven { url "https://maven.pkg.jetbrains.space/public/p/compose/dev" }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rootProject.name = "keyguard"
|
|
|
|
|
|
|
|
include ':common'
|
|
|
|
// apps
|
|
|
|
include ':androidApp'
|
|
|
|
include ':androidBenchmark'
|
2024-12-10 10:52:36 +01:00
|
|
|
include ':androidTest'
|
2023-12-29 17:38:23 +01:00
|
|
|
include ':desktopApp'
|
|
|
|
|