2019-10-02 18:11:22 +05:30
|
|
|
/*
|
2021-03-09 14:45:27 +05:30
|
|
|
* Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
|
2019-10-02 20:10:07 +05:30
|
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
2019-10-02 18:11:22 +05:30
|
|
|
*/
|
2021-03-09 14:53:11 +05:30
|
|
|
|
2021-12-11 00:12:54 +05:30
|
|
|
rootProject.name = "APS"
|
|
|
|
|
2021-04-16 21:08:51 +05:30
|
|
|
// Plugin repositories
|
2020-09-20 16:54:38 +05:30
|
|
|
pluginManagement {
|
|
|
|
repositories {
|
2021-11-29 01:41:04 +05:30
|
|
|
includeBuild("build-logic")
|
|
|
|
google()
|
2021-10-09 13:13:14 +05:30
|
|
|
mavenCentral()
|
2020-09-20 16:54:38 +05:30
|
|
|
gradlePluginPortal()
|
2021-10-09 13:13:14 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
repositories {
|
2021-02-06 17:34:17 +05:30
|
|
|
mavenCentral()
|
2021-10-09 13:13:14 +05:30
|
|
|
google()
|
|
|
|
maven("https://jitpack.io") {
|
|
|
|
name = "JitPack"
|
|
|
|
content {
|
|
|
|
includeModule("com.github.haroldadmin", "WhatTheStack")
|
|
|
|
includeModule("com.github.open-keychain.open-keychain", "sshauthentication-api")
|
|
|
|
}
|
|
|
|
}
|
2020-09-20 16:54:38 +05:30
|
|
|
}
|
|
|
|
}
|
2021-11-29 01:41:04 +05:30
|
|
|
|
|
|
|
// Experimental features
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
|
|
|
|
enableFeaturePreview("VERSION_CATALOGS")
|
|
|
|
|
|
|
|
// Modules
|
|
|
|
include("app")
|
|
|
|
|
|
|
|
include("autofill-parser")
|
|
|
|
|
2021-12-09 10:07:54 +05:30
|
|
|
include("coroutine-utils")
|
|
|
|
|
|
|
|
include("coroutine-utils-testing")
|
|
|
|
|
2021-11-29 01:41:04 +05:30
|
|
|
include("crypto-common")
|
|
|
|
|
|
|
|
include("crypto-pgpainless")
|
|
|
|
|
|
|
|
include("format-common")
|
|
|
|
|
|
|
|
include("openpgp-ktx")
|
|
|
|
|
2021-12-09 10:07:54 +05:30
|
|
|
include("dependency-sync")
|