build: share desugaring version

This commit is contained in:
Alexander Capehart 2024-12-21 12:11:32 -05:00
parent 001db620e3
commit 6f8a960ee1
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47
3 changed files with 3 additions and 2 deletions

View file

@ -126,7 +126,7 @@ dependencies {
implementation "androidx.room:room-ktx:$room_version" implementation "androidx.room:room-ktx:$room_version"
// Build // Build
coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:2.1.3" coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:$desugaring_version"
// --- SECOND PARTY --- // --- SECOND PARTY ---

View file

@ -7,6 +7,7 @@ buildscript {
hilt_version = '2.51.1' hilt_version = '2.51.1'
room_version = '2.6.1' room_version = '2.6.1'
core_version = '1.15.0' core_version = '1.15.0'
desugaring_version = '2.1.3'
min_sdk = 24 min_sdk = 24
target_sdk = 35 target_sdk = 35

View file

@ -71,7 +71,7 @@ dependencies {
implementation "androidx.room:room-ktx:$room_version" implementation "androidx.room:room-ktx:$room_version"
// Build // Build
coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:2.1.3" coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:$desugaring_version"
// Testing // Testing
testImplementation "junit:junit:4.13.2" testImplementation "junit:junit:4.13.2"