Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ android {
compileOptions {
sourceCompatibility JavaVersion.VERSION_21
targetCompatibility JavaVersion.VERSION_21
coreLibraryDesugaringEnabled true
}

buildFeatures {
Expand All @@ -82,6 +83,8 @@ android {

dependencies {

coreLibraryDesugaring libs.desugar.jdk.libs

// Google Play services and related UI components
implementation libs.bundles.google.core

Expand Down
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ hilt = "2.57.2"
room = "2.8.3"
glide = "5.0.5"
retrofit = "3.0.0"
desugarJdkLibs = "2.1.2"

[libraries]
# AndroidX & Material
Expand Down Expand Up @@ -81,6 +82,7 @@ review = { module = "com.google.android.play:review", version.ref = "review" }
volley = { module = "com.android.volley:volley", version.ref = "volley" }
glide = { module = "com.github.bumptech.glide:glide", version.ref = "glide" }
glide-compiler = { module = "com.github.bumptech.glide:compiler", version.ref = "glide" }
desugar-jdk-libs = { module = "com.android.tools:desugar_jdk_libs", version.ref = "desugarJdkLibs" }

# --- TESTING ---
# Unit Tests (test folder)
Expand Down