-
Notifications
You must be signed in to change notification settings - Fork 11
/
build.gradle
executable file
·59 lines (45 loc) · 1.48 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
59
apply from: 'buildsystem/ci.gradle'
apply from: 'buildsystem/dependencies.gradle'
buildscript {
ext {
kotlin_version = '1.9.0'
}
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.5.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
classpath 'org.greenrobot:greendao-gradle-plugin:3.3.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.3.15'
classpath('com.google.guava:guava:30.1.1-jre')
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.7'
}
}
allprojects {
repositories {
}
ext {
androidVersionCode = 63
androidVersionName = "0.5.2"
androidBuildNumber = 1
testInstrumentationRunner = "android.support.test.runner.AndroidJUnitRunner"
testApplicationId = 'io.forus.me.test'
appcompatVersion = '1.6.0'
}
}
task runDomainUnitTests(dependsOn: [':domain:test']) {
description 'Run unit tests for the domain layer.'
}
task runDataUnitTests(dependsOn: [':data:cleanTestDebugUnitTest', ':data:testDebugUnitTest']) {
description 'Run unit tests for the data layer.'
}
task runUnitTests(dependsOn: ['runDomainUnitTests', 'runDataUnitTests']) {
description 'Run unit tests for both domain and data layers.'
}
task runAcceptanceTests(dependsOn: [':presentation:connectedAndroidTest']) {
description 'Run application acceptance tests.'
}