We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7797c2b commit ed147f2Copy full SHA for ed147f2
app/src/main/kotlin/dev/teogor/ceres/feature/about/AboutScreen.kt
@@ -16,6 +16,7 @@
16
17
package dev.teogor.ceres.feature.about
18
19
+import android.os.Build
20
import androidx.compose.foundation.layout.Spacer
21
import androidx.compose.foundation.layout.height
22
import androidx.compose.material.icons.Icons
@@ -100,9 +101,11 @@ private fun AboutLayout() = LazyColumnLayoutBase(
100
101
102
// BuildConfigBet
103
- aboutBuildDate(
104
- BuildProfile.buildLocalDateTime,
105
- )
+ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
+ aboutBuildDate(
106
+ BuildProfile.buildLocalDateTime,
107
+ )
108
+ }
109
110
aboutHeaderAboutUs()
111
0 commit comments