forked from us1415/wire-android
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
56 lines (51 loc) · 1.86 KB
/
build.gradle
File metadata and controls
56 lines (51 loc) · 1.86 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
maven {
url "https://dl.bintray.com/wire-android/third-party"
}
google()
jcenter()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:${Versions.ANDROID_GRADLE_PLUGIN}"
classpath "com.wire.gradle:gradle-android-scala-plugin:${Versions.SCALA_BUILD_PLUGIN}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.KOTLIN}"
classpath "org.jetbrains.kotlin:kotlin-serialization:${Versions.KOTLIN}"
classpath "com.google.gms:google-services:${Versions.GMS}"
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:${Versions.DETEKT}"
classpath "org.jacoco:org.jacoco.core:${Versions.JACOCO}"
classpath "com.mutualmobile.gradle.plugins:dexinfo:${Versions.DEX_INFO}"
}
}
plugins {
id "com.github.hierynomus.license" version "0.13.1"
id "io.gitlab.arturbosch.detekt" version "1.2.2"
}
allprojects {
repositories {
jcenter()
google()
mavenCentral()
maven { url "https://dl.bintray.com/wire-android/releases" }
maven { url "https://dl.bintray.com/wire-android/snapshots" }
maven { url "https://dl.bintray.com/wire-android/third-party" }
}
}
ext {
activeSpeakers = true
joinGroupCallMuted = false
removeJoinLeaveSounds = true
appLockFeatureFlag = true
sessionReset = true
//Update kotlinCore flag as well when adding new kotlin features
kotlinSettings = false
kotlinCore = kotlinSettings
}
apply from: "./scripts/avs.gradle"
apply from: "./scripts/detekt.gradle"
apply from: "./scripts/jacoco.gradle"
apply from: "./scripts/licensing.gradle"
apply from: "./scripts/customization.gradle"
apply from: "./scripts/ci.gradle"