forked from SAP/gigya-android-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
35 lines (33 loc) · 925 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
31
32
33
34
35
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
jcenter()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
jcenter()
maven {
// NOTE: This is a dynamic link to the native screen-sets (NSS) engine folder.
// Update the local path to match you engine location in order to safely
// compile when using NSS references.
url 'sdk-nss-engine/host/outputs/repo'
}
maven {
url 'https://storage.googleapis.com/download.flutter.io'
}
maven { url 'https://jitpack.io' }
}
}
rootProject.name = "gigya-android-sdk"
include ':sdk-core',
':sdk-biometric',
':sdk-tfa',
':sdk-auth',
':sdk-nss',
':example'