Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jahirfiquitiva committed Apr 21, 2024
1 parent a5b8a41 commit bd1899f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions buildSrc/src/main/java/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@
object Versions {
// Plugins
const val gradle = "8.3.0"
const val kotlin = "1.9.22"
const val kotlin = "1.9.23"
const val sonatype = "1.3.0"
const val ksp = "$kotlin-1.0.16"
const val ksp = "$kotlin-1.0.20"

// OneSignal
const val oneSignal = "4.8.7"
const val oneSignal = "4.8.8"

// App
const val minSdk = 21
const val targetSdk = 34
const val buildTools = "34.0.0"

// Coroutines
const val coroutines = "1.7.3"
const val coroutines = "1.8.0"

// Android UI
const val appcompat = "1.6.1"
Expand All @@ -26,11 +26,11 @@ object Versions {
const val palette = "1.0.0"
const val preference = "1.2.1"
const val materialComponents = "1.11.0"
const val activityKtx = "1.8.2"
const val activityKtx = "1.9.0"
const val fragmentKtx = "1.6.2"

// ViewModel and LiveData
const val lifecycle = "2.6.2"
const val lifecycle = "2.7.0"
const val lifecycleExt = "2.2.0"

// Room Database
Expand All @@ -41,10 +41,10 @@ object Versions {

// Network & Serialization
const val gson = "2.10.1"
const val retrofit = "2.9.0"
const val retrofit = "2.11.0"

// Image loading and Touch Image View
const val coil = "2.5.0"
const val coil = "2.6.0"
const val touchImageView = "3.6"

// Harmonic Colors
Expand All @@ -57,13 +57,13 @@ object Versions {
const val fastScrollRecyclerView = "-SNAPSHOT"

// Permissions
const val permissions = "3.4.0"
const val permissions = "3.5.0"

// License Checker
const val licenseChecker = "1.2.8"

// In-App Billing
const val inAppBilling = "6.1.0"
const val inAppBilling = "6.2.1"

// MultiDex
const val multidex = "2.0.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import java.io.File
abstract class BaseWallpaperApplierActivity<out P : Preferences> :
BaseWallpaperFetcherActivity<P>() {

private var externalApplyLauncher: ActivityResultLauncher<Intent?>? = null
private var externalApplyLauncher: ActivityResultLauncher<Intent>? = null

override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
Expand Down Expand Up @@ -75,7 +75,7 @@ abstract class BaseWallpaperApplierActivity<out P : Preferences> :
private fun onWallpaperApplied() {
try {
currentSnackbar = snackbar(R.string.applying_applied, anchorViewId = snackbarAnchorId)
} catch (e: Exception) {
} catch (_: Exception) {
}
cancelWorkManagerTasks()
}
Expand Down

0 comments on commit bd1899f

Please sign in to comment.