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