-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle
58 lines (48 loc) · 1.28 KB
/
build.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10"
classpath "nl.neotech.plugin:android-root-coverage-plugin:${neotech_coverage}"
}
}
plugins {
id "com.github.sherter.google-java-format" version "0.9"
}
apply from: "${rootDir}/gradle/google_java_format.gradle"
if (project.hasProperty('coverage')){
apply from: "${rootDir}/gradle/root_code_coverage.gradle"
}
allprojects {
repositories {
maven { url 'https://jitpack.io' }
google()
mavenCentral()
}
}
ext {
minSdkVersion = 21
targetSdkVersion = 33
compileSdkVersion = 33
versionCode = 19
versionName = "2.0.0"
appcompatVersion = '1.5.0'
materialVersioon = '1.6.1'
lifecycleVersion = '2.2.0'
lifecycleModelVersion = '2.5.1'
pagingVersion = '3.1.1'
roomVersion = '2.4.3'
timberVersion = '5.0.1'
injectVersion = '1'
daggerVersion = '2.43.2'
//test
truthVersion = '1.1.3'
junit = '4.13.2'
}