-
Notifications
You must be signed in to change notification settings - Fork 8
/
settings.gradle
35 lines (35 loc) · 1011 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()
}
plugins {
id 'com.android.application' version '7.2.2'
id 'com.android.library' version '7.2.2'
id 'org.jetbrains.kotlin.android' version '1.5.10'
id 'com.android.dynamic-feature' version '7.2.2'
}
resolutionStrategy {
eachPlugin {
// Use `resolutionStrategy` to define the Hilt plugin and its coordinate
if (requested.id.id == 'dagger.hilt.android.plugin') {
useModule('com.google.dagger:hilt-android-gradle-plugin:$dagger_version')
}
}
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "Neeva Search & Browser"
include ':app'
include ':scripts'
include ':screenshotTests'
include ':testCommon'
include ':weblayer'
include ':weblayer_support'