-
Notifications
You must be signed in to change notification settings - Fork 4
/
settings.gradle
30 lines (28 loc) · 972 Bytes
/
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
/*
* Copyright (C) 2020 Bandyer S.r.l. All Rights Reserved.
* See LICENSE.txt for licensing information
*/
include ':app',
':app-utilities',
':app-configuration',
':app-design'
project(':app').projectDir = file('app')
project(':app-utilities').projectDir = file('app-extensions/app-utilities')
project(':app-configuration').projectDir = file('app-extensions/app-configuration')
project(':app-design').projectDir = file('app-extensions/app-design')
dependencyResolutionManagement {
repositories {
mavenLocal()
google()
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
maven { url 'https://jitpack.io' }
maven { url 'https://maven.bandyer.com/releases' }
}
enableFeaturePreview("VERSION_CATALOGS")
versionCatalogs {
create("sampleAppCatalog") {
from("com.kaleyra:video-app-version-catalog:2023.09.03.11")
}
}
}