-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathbuild.gradle
More file actions
40 lines (33 loc) · 1.2 KB
/
build.gradle
File metadata and controls
40 lines (33 loc) · 1.2 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
plugins {
// Android plugins for application and library modules
alias(libs.plugins.androidApplication) apply false
alias(libs.plugins.androidLibrary) apply false
// Kotlin serialization plugin
alias(libs.plugins.kotlinSerialization) apply false
// Google Services plugin
alias(libs.plugins.googleServices) apply false
// Firebase Crashlytics plugin
alias(libs.plugins.firebaseCrashlytics) apply false
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
// TEST VARIABLES
// --------------
// test* variables are defaulted here,
// passed as arguments to instrumented tests in core/build.gradle, and
// passed as system properties to unit tests in core/build.gradle.
// They can be overridden in (git-ignored) secret.gradle
ext.testServer = "https://demo.evergreencatalog.com"
ext.testUsername = "hemlock"
ext.testPassword = "1234"
ext.testHttpbinServer = "https://httpbin.org"
def secretGradleFile = rootProject.file('secret/secret.gradle')
if (secretGradleFile.exists()) {
apply from: secretGradleFile
}
apply from: rootProject.file('version.gradle')
allprojects {
repositories {
google()
mavenCentral()
}
}