Skip to content

Commit ce2b1e5

Browse files
committed
Moved dependency versions
1 parent 26fe2c8 commit ce2b1e5

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ android {
6464

6565
dependencies {
6666
implementation 'com.github.SimpleMobileTools:Simple-Commons:1dabb1506e'
67-
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
68-
implementation 'androidx.documentfile:documentfile:1.0.1'
67+
implementation "androidx.constraintlayout:constraintlayout:$constraintlayout_version"
68+
implementation "androidx.documentfile:documentfile:$documentfile_version"
6969

70-
kapt 'androidx.room:room-compiler:2.4.3'
71-
implementation 'androidx.room:room-runtime:2.4.3'
72-
annotationProcessor 'androidx.room:room-compiler:2.4.3'
70+
kapt "androidx.room:room-compiler:$room_version"
71+
implementation "androidx.room:room-runtime:$room_version"
72+
annotationProcessor "androidx.room:room-compiler:$room_version"
7373
}

build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
buildscript {
44
ext.kotlin_version = '1.7.10'
5+
ext.room_version = '2.4.3'
6+
ext.documentfile_version = '1.0.1'
7+
ext.constraintlayout_version = '2.1.4'
58

69
repositories {
710
google()

0 commit comments

Comments
 (0)