-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
171 lines (153 loc) · 6.66 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/*
* Copyright 2017-2024 Cyface GmbH
*
* This file is part of the Cyface App for Android.
*
* The Cyface App for Android is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* The Cyface App for Android is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with the Cyface App for Android. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* Top-level build file where you can add configuration options common to all sub-projects/modules.
*
* @author Armin Schnabel
* @author Klemens Muthmann
*/
buildscript {
ext.gradle_version = '8.2.2'
ext.kotlin_version = "1.9.22"
ext.matcher_version = "1.2.4"
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_version"
// Required for versioning Google play services.
classpath "com.google.android.gms:strict-version-matcher-plugin:$matcher_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
// To generate Proto DataStores for settings in ui/digural and utils/
id 'com.google.protobuf' version '0.9.4' apply false // Maybe keep in sync with other usages
}
ext {
// This app's version
versionName = "0.0.0" // Automatically overwritten by CI. Version shown to the user
versionCode = 1 // Automatically incremented by CI. Required for Play Store releases
/*
* Some of these values are used directly by the Cyface submodules. If you change any of these values you must
* check for that value in the Cyface submodules build.gradle file and update the value there as well. This
* prevents you from the creation of an incompatible fork and enables us to work standalone on the submodules.
*/
// Cyface dependencies
cyfaceUtilsVersion = "4.0.7"
// (!) Match versions `android-app`, `SDK` and `camera-service`.
// When `android-app` is checkout out, `rootProject.uploaderVersion` in the submodules will point
// to `android-app/build.gradle` instead of `submodule/build.gradle`.
cyfaceSerializationVersion = "3.4.2"
cyfaceUploaderVersion = "1.5.1"
// These versions just document the currently linked version of this dependency.
// To upgrade the dependencies you need to update the submodules to a newer commit.
cyfaceAndroidBackendVersion = "7.12.7"
cyfaceEnergySettingsVersion = "4.0.6"
cyfaceCameraServiceVersion = "4.7.1"
// Android SDK versions
minSdkVersion = 21 // device support
targetSdkVersion = 34 // behavioral changes, follow migration guide & test the app against this
compileSdkVersion = 34 // allows newest APIs to be used and to see deprecations, use latest
buildToolsVersion = '34.0.0' // optional, if defined, use latest (SDK Manager > SDK Tools)
// Android dependencies
desugaringVersion = "2.0.3"
androidxAnnotationVersion = '1.6.0'
androidxAppCompatVersion = "1.6.1"
androidPreferencesVersion = '1.2.1'
localbroadcastmanagerVersion = '1.1.0'
exifinterfaceVersion = "1.3.7" // Required by Camera Service submodule
roomVersion = "2.6.1"
lifecycleVersion = "2.7.0"
navigationVersion = "2.7.7"
okHttpVersion = "4.12.0"
// 1.1.0-alpha05: ':persistence:mergeExtDexDebugAndroidTest' fails (transitive dependency)
datastoreVersion = "1.1.0-alpha04" // only 1.1.0 supports multi-process datastore
// Kotlin components
coroutinesVersion = "1.7.3"
kotlinxSerializationVersion = "1.7.1"
// Digural UI dependencies
sardineVersion = "0.9"
// Machine Learning
tensorflowLiteSupport = "0.1.0"
tensorflowLiteMetadata = "0.1.0"
// Other dependencies
materialDialogsVersion = "3.3.0"
chartVersion = "v3.1.0"
// Can't be a SDK dependency as `appAuthRedirectScheme` needs to be defined at build-time
appAuthVersion = "0.11.1" // Can't move to uploader lib because of dependency issues
retrofitVersion = "2.9.0" // Used by digural UI
protobufVersion = '3.22.2' // For Proto Datastore. Maybe keep in sync with other versions.
// Testing
junitVersion = "1.1.5"
mockitoVersion = '5.7.0'
mockitoKotlinVersion = '5.2.1'
hamcrestVersion = "1.3"
rulesVersion = "1.5.0"
robolectricVersion = "4.10.2"
androidxTestCoreVersion = '1.4.0'
runnerVersion = "1.5.2"
uiAutomatorVersion = "2.3.0"
espressoVersion = "3.5.1"
constrantLayoutVersion = "1.3.2"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
// Java version
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
kotlinTargetJavaVersion = "17"
// Android-frontend
sentryAndroidVersion = '7.6.0'
sentryAndroidGradlePluginVersion = "4.3.1"
mapPlayServicesVersion = '18.2.0'
locationPlayServicesVersion = '21.1.0'
materialVersion = '1.11.0'
circelProgressVersion = "1.1.0" // Version > 1.1.0 (1.2.1) is currently not available
androidxRecyclerViewVersion = "1.3.2"
coreLibraryDesugaringVersion = "2.0.4"
}
// Attention: Overwrites also the repositories used to retrieve the transitive dependencies in the submodules
allprojects {
repositories {
google()
mavenCentral()
gradlePluginPortal()
// Required by submodules: camera_service, energy_settings, ui, backend
maven {
url "https://maven.pkg.github.com/cyface-de/android-utils"
credentials {
username = project.findProperty("githubUser")
password = project.findProperty("githubToken")
}
}
maven { url 'https://jitpack.io' } // For MPAndroidChart
maven {
url = uri("https://maven.pkg.github.com/cyface-de/uploader")
// Needed even for public projects: https://github.community/t5/GitHub-API-Development-and/Download-from-Github-Package-Registry-without-authentication/m-p/35255
credentials {
username = project.findProperty("githubUser")
password = project.findProperty("githubToken")
}
}
}
}
// Generate a single reporting for all sub-modules (test results, lint, coverage, etc.)
// TODO does not work currently. ui is unable to find dependencies with this applied.
//apply plugin: 'android-reporting'