-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsettings.gradle
More file actions
25 lines (20 loc) · 873 Bytes
/
settings.gradle
File metadata and controls
25 lines (20 loc) · 873 Bytes
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
pluginManagement { scriptHandler ->
apply from: "gradle/versions.gradle"
apply from: "gradle/repositories.gradle", to: scriptHandler
plugins {
id "org.jetbrains.kotlin.android" version "${kotlinVersion}"
id "org.jetbrains.kotlin.kapt" version "${kotlinVersion}"
id "com.mikepenz.aboutlibraries.plugin" version "${aboutLibrariesVersion}"
id "com.github.ben-manes.versions" version "${versionsPluginVersion}"
id "io.gitlab.arturbosch.detekt" version "${detektPluginVersion}"
id "org.jlleitschuh.gradle.ktlint" version "${ktlintPluginVersion}"
}
resolutionStrategy {
eachPlugin {
if (requested.id.id == "com.android.application") {
useModule("com.android.tools.build:gradle:${androidPluginVersion}")
}
}
}
}
rootProject.name = "ProxerAndroid"