Skip to content

Commit 77f9bfa

Browse files
committed
Removed force null wrapping
1 parent 0e9333d commit 77f9bfa

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
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:$constraintlayout_version"
68-
implementation "androidx.documentfile:documentfile:$documentfile_version"
67+
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
68+
implementation 'androidx.documentfile:documentfile:1.0.1'
6969

70-
kapt "androidx.room:room-compiler:$room_version"
71-
implementation "androidx.room:room-runtime:$room_version"
72-
annotationProcessor "androidx.room:room-compiler:$room_version"
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'
7373
}

build.gradle

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
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'
85

96
repositories {
107
google()

0 commit comments

Comments
 (0)