Skip to content

Commit a149e49

Browse files
chore: upgrade dependencies and min sdk to 23
1 parent 32e4f6b commit a149e49

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

buildSrc/src/main/java/Blueprint.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
object Blueprint {
44
const val appId = "dev.jahir.blueprint.app"
5-
const val version = 250
6-
const val versionName = "2.5.0"
5+
const val version = 251
6+
const val versionName = "2.5.1"
77
}

buildSrc/src/main/java/Versions.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33
object Versions {
44
// Plugins
55
const val gradle = "8.12.0"
6-
const val kotlin = "2.2.0"
6+
const val kotlin = "2.2.21"
77
const val sonatype = "2.0.0"
8-
const val ksp = "$kotlin-2.0.2"
8+
const val ksp = "2.3.4"
99

1010
// OneSignal
1111
const val oneSignal = "4.8.12"
1212

1313
// App
14-
const val minSdk = 21
14+
const val minSdk = 23
1515
const val targetSdk = 36
1616
const val buildTools = "36.0.0"
1717

1818
// Kuper
19-
const val kuper = "2.6.0"
19+
const val kuper = "2.6.1"
2020

2121
// Adaptive Icons
2222
const val adaptiveIcons = "1.0.2"

library/src/main/kotlin/dev/jahir/blueprint/ui/activities/DrawerBlueprintActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ abstract class DrawerBlueprintActivity : BlueprintActivity(),
7474
headerDrawable?.let { header?.background = it }
7575
?: header?.setBackgroundColor(
7676
resolveColor(
77-
com.google.android.material.R.attr.colorAccent,
77+
com.google.android.material.R.attr.colorSecondary,
7878
color(dev.jahir.frames.R.color.accent)
7979
)
8080
)

library/src/main/kotlin/dev/jahir/blueprint/ui/viewholders/RequestViewHolder.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class RequestViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) {
3131
checkboxView?.isClickable = false
3232
val color =
3333
context.resolveColor(
34-
if (checked) com.google.android.material.R.attr.colorAccent
34+
if (checked) com.google.android.material.R.attr.colorSecondary
3535
else android.R.attr.textColorPrimary
3636
)
3737
textView?.text = requestApp?.name

0 commit comments

Comments
 (0)