-
-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathbuild.gradle
More file actions
58 lines (49 loc) · 1.59 KB
/
Copy pathbuild.gradle
File metadata and controls
58 lines (49 loc) · 1.59 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
57
58
buildscript {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath(libs.google.oss.licenses.plugin)
}
}
plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.kotlin.android) apply false
alias(libs.plugins.kotlin.compose) apply false
alias(libs.plugins.kotlin.kapt) apply false
alias(libs.plugins.kotlin.parcelize) apply false
alias(libs.plugins.hilt.android) apply false
alias(libs.plugins.google.services) apply false
alias(libs.plugins.firebase.crashlytics) apply false
alias(libs.plugins.roborazzi) apply false
alias(libs.plugins.screenshotbot) apply false
alias(libs.plugins.fulladle) apply false
alias(libs.plugins.play.publisher) apply false
}
if (project.hasProperty("enableFladle")) {
apply plugin: 'com.osacky.fulladle'
fladle {
serviceAccountCredentials = project.file("gcloud-service-key.json")
projectId = "gratitude-journal-app"
flankVersion = "23.10.1"
directoriesToPull = [
"/sdcard"
]
filesToDownload = [
"JUnitReport.xml",
".*/coverage/.*",
".*/sdcard/[^/]+\\.ec\$"
]
environmentVariables = [
coverage : "true",
coverageFile: "/sdcard/coverage.ec"
]
devices = [
[ "model": "Pixel2.arm", "version": "27", "locale": "en_US", "orientation": "portrait" ],
]
}
}
apply from: 'gradle/jacoco_ci.gradle'
apply from: 'gradle/common.gradle'