Skip to content

Commit 2702170

Browse files
committed
chore(build): Single constant for glide version
Prevents duplicate dependabot PRs Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com>
1 parent 5395a53 commit 2702170

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

app/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ android {
6969
}
7070

7171
ext {
72+
glideVersion = '4.15.0'
7273
roomVersion = "2.5.0"
7374
}
7475

@@ -86,8 +87,8 @@ dependencies {
8687
}
8788

8889
// Glide
89-
implementation 'com.github.bumptech.glide:glide:4.15.0'
90-
annotationProcessor 'com.github.bumptech.glide:compiler:4.15.0'
90+
implementation "com.github.bumptech.glide:glide:$glideVersion"
91+
annotationProcessor "com.github.bumptech.glide:compiler:$glideVersion"
9192

9293
// Android X
9394
implementation 'androidx.appcompat:appcompat:1.6.1'

0 commit comments

Comments
 (0)