-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathbuild.gradle
More file actions
41 lines (36 loc) · 1.45 KB
/
build.gradle
File metadata and controls
41 lines (36 loc) · 1.45 KB
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
buildscript {
apply from: 'config.gradle'
repositories {
google()
mavenCentral()
maven { url 'https://plugins.gradle.org/m2/' }
maven { url 'https://artifactory.surfstudio.ru/artifactory/libs-release-local' }
}
dependencies {
classpath "com.android.tools.build:gradle:${versions.gradlePluginVersion}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlinVersion}"
classpath "com.google.gms:google-services:${versions.googleServicesVersion}"
classpath "com.google.firebase:firebase-appdistribution-gradle:${versions.firebaseAppDistributionVersion}"
classpath "com.google.firebase:firebase-crashlytics-gradle:${versions.firebaseCrashlyticsGradleVersion}"
classpath "com.gradle:build-scan-plugin:${versions.buildScanPluginVersion}"
if (!gradle.ext.androidStandard.debugEnabled) {
classpath "ru.surfstudio.android:version-plugin:${androidStandardVersion}"
}
classpath lint.detektPlugin
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url "https://artifactory.surfstudio.ru/artifactory/libs-release-local" }
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
apply from: "scripts/dependenciesModules.gradle"
apply from: "scripts/ktFormatter.gradle"
apply from: "androidStandardPlugin.gradle"
apply from: "lint/detekt.gradle"