Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Hamza417 committed Sep 20, 2024
1 parent 73907b9 commit 6e14818
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package app.simple.inure.preferences

import android.content.Context
import android.content.res.ColorStateList
import android.graphics.Color
import android.os.Build
import androidx.annotation.ColorInt
import androidx.annotation.RequiresApi
Expand Down Expand Up @@ -57,7 +58,7 @@ object AppearancePreferences {

@ColorInt
fun getPickedAccentColor(): Int {
return getSharedPreferences().getInt(PICKED_ACCENT_COLOR, 0xFFFF8C68.toInt())
return getSharedPreferences().getInt(PICKED_ACCENT_COLOR, Color.GRAY)
}

fun getPickedAccentColorStateList(): ColorStateList {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:8.6.0'
classpath 'com.android.tools.build:gradle:8.6.1'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.20'

// NOTE: Do not place your application dependencies here; they belong
Expand Down

0 comments on commit 6e14818

Please sign in to comment.