2019-10-02 14:41:22 +02:00
|
|
|
/*
|
2021-03-09 10:15:27 +01:00
|
|
|
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
2019-10-02 16:40:07 +02:00
|
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
2019-10-02 14:41:22 +02:00
|
|
|
*/
|
2021-03-09 10:23:11 +01:00
|
|
|
|
2021-04-16 17:38:51 +02:00
|
|
|
// Modules
|
2020-07-23 11:09:36 +02:00
|
|
|
include(":app")
|
2021-05-15 09:26:49 +02:00
|
|
|
|
2021-04-16 17:38:51 +02:00
|
|
|
include(":autofill-parser")
|
2021-05-15 09:26:49 +02:00
|
|
|
|
2021-07-11 19:22:26 +02:00
|
|
|
include(":crypto-common")
|
|
|
|
|
|
|
|
include(":crypto-pgp")
|
|
|
|
|
2021-04-16 17:38:51 +02:00
|
|
|
include(":format-common")
|
2021-05-15 09:26:49 +02:00
|
|
|
|
2020-11-24 22:57:42 +01:00
|
|
|
include(":openpgp-ktx")
|
2020-09-20 13:24:38 +02:00
|
|
|
|
2021-04-16 17:38:51 +02:00
|
|
|
// Experimental features
|
2021-04-12 14:08:06 +02:00
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
2021-05-15 09:26:49 +02:00
|
|
|
|
2021-04-12 14:08:06 +02:00
|
|
|
enableFeaturePreview("VERSION_CATALOGS")
|
|
|
|
|
2021-04-16 17:38:51 +02:00
|
|
|
// Plugin repositories
|
2020-09-20 13:24:38 +02:00
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
|
|
|
gradlePluginPortal()
|
2021-02-06 13:04:17 +01:00
|
|
|
mavenCentral()
|
2020-09-20 13:24:38 +02:00
|
|
|
}
|
|
|
|
}
|