Skip to content

Commit

Permalink
[Jetcaster]: Fix Glance padding. (#1400)
Browse files Browse the repository at this point in the history
  • Loading branch information
mlykotom committed May 10, 2024
2 parents 32ea076 + fe56103 commit 457ed0a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -214,13 +214,11 @@ fun PodcastText(title: String, subtitle: String, modifier: GlanceModifier = Glan
text = title,
style = TextStyle(fontSize = 16.sp, fontWeight = FontWeight.Medium, color = fgColor),
maxLines = 2,
modifier = GlanceModifier.padding(bottom = 8.dp)
)
Text(
text = subtitle,
style = TextStyle(fontSize = 14.sp, color = fgColor),
maxLines = 2,
modifier = GlanceModifier.padding(bottom = 8.dp)
)
}
}
Expand Down
2 changes: 1 addition & 1 deletion Jetcaster/mobile/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ android {
}

getByName("release") {
isMinifyEnabled = true
isMinifyEnabled = false
signingConfig = signingConfigs.getByName("release")
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
Expand Down

0 comments on commit 457ed0a

Please sign in to comment.