forked from Digitaler-Impfnachweis/covpass-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
45 lines (39 loc) · 1.21 KB
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
rootProject.name = 'android-covpass-app'
/*
* (C) Copyright IBM Deutschland GmbH 2021
* (C) Copyright IBM Corp. 2021
*/
// SDK modules
include ':covpass-bom'
include ':covpass-sdk'
include ':covpass-sdk-demo'
// SDK utils
include ':annotations'
include ':covpass-base45'
include ':covpass-http'
include ':covpass-logging'
include ':covpass-dgc-certlogic'
// Apps
include ':app-covpass-check-demo'
include ':app-covpass-check-prod'
include ':app-covpass-demo'
include ':app-covpass-prod'
include ':common-app-covpass'
include ':common-app-covpass-check'
include ':common-app'
// App-only utils (not used by SDK)
include ':android-utils'
include ':navigation'
include ':securityprovider'
// How to include locally cloned repos / composing builds:
// Create a settings-local.gradle file and add entries like this to it:
//
// substituteAllModules '../path-to-other-repo'
//
// Note that settings-local.gradle is ignored by Git, so you can't mistakenly commit it and you can adjust the paths
// to your local setup without any conflicts with other people.
apply from: "$rootDir/gradle/common/settings.gradle"
def localSettings = "$rootDir/settings-local.gradle"
if (file(localSettings).exists()) {
apply from: localSettings
}