Skip to content

Commit

Permalink
Release/1.7.2 #194
Browse files Browse the repository at this point in the history
  • Loading branch information
kelianClerc authored Mar 28, 2023
2 parents 735477b + bc40c7f commit 43725b8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
buildscript {

ext {
grapes_version = '1.7.1'
grapes_version = '1.7.2'

kotlin_version = '1.7.10'
firebase_app_distribution_version = '2.1.2'
Expand Down
6 changes: 5 additions & 1 deletion library-compose/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,11 @@ dependencies {
api("androidx.compose.foundation:foundation")
// Material Design 2 & 3 while migration is pending.
api("androidx.compose.material:material")
api("androidx.compose.material3:material3:$compose_material_3_version")
api("androidx.compose.material3:material3:$compose_material_3_version") {
because("These subdependecies are using an unstable version of androidx.compose.material that introduce a breaking change and crash")
exclude group: 'androidx.compose.material', module: 'material-icons-core'
exclude group: 'androidx.compose.material', module: 'material-ripple'
}

// Material design icons
api("androidx.lifecycle:lifecycle-runtime-ktx:2.6.0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ internal fun GrapesBaseTextField(
readOnly = readOnly,
textStyle = textStyle,
isError = isError,
onClick = onClick,
keyboardActions = keyboardActions,
keyboardOptions = keyboardOptions,
singleLine = singleLine,
Expand Down

0 comments on commit 43725b8

Please sign in to comment.