Skip to content

Commit

Permalink
Merge branch 'feat/compose-beta-3' into 'master'
Browse files Browse the repository at this point in the history
Update Jetpack Compose to Beta 03

Closes #71

See merge request fmasa/wfrp-master!199
  • Loading branch information
fmasa committed Mar 26, 2021
2 parents 238c913 + 344a38b commit 4833023
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 8 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ android {
}

composeOptions {
kotlinCompilerExtensionVersion = "1.0.0-beta02"
kotlinCompilerExtensionVersion = "1.0.0-beta03"
}

compileOptions {
Expand Down Expand Up @@ -135,7 +135,7 @@ dependencies {
testImplementation("org.mockito:mockito-core:2.7.22")

// Time picker
implementation("com.vanpra.compose-material-dialogs:datetime:0.3.1")
implementation("com.vanpra.compose-material-dialogs:datetime:0.3.2")

// Checking network access
implementation("com.github.pwittchen:reactivenetwork-rx2:3.0.8")
Expand Down
2 changes: 1 addition & 1 deletion app/combat/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id("kotlin-parcelize")
}

val composeVersion = "1.0.0-beta02"
val composeVersion = "1.0.0-beta03"

android {
compileSdkVersion(29)
Expand Down
2 changes: 1 addition & 1 deletion app/compendium/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id("kotlin-parcelize")
}

val composeVersion = "1.0.0-beta02"
val composeVersion = "1.0.0-beta03"

android {
compileSdkVersion(29)
Expand Down
2 changes: 1 addition & 1 deletion app/core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id("kotlin-parcelize")
}

val composeVersion = "1.0.0-beta02"
val composeVersion = "1.0.0-beta03"

android {
compileSdkVersion(29)
Expand Down
2 changes: 1 addition & 1 deletion app/inventory/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id("kotlin-parcelize")
}

val composeVersion = "1.0.0-beta02"
val composeVersion = "1.0.0-beta03"

android {
compileSdkVersion(29)
Expand Down
2 changes: 1 addition & 1 deletion app/navigation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id("kotlin-parcelize")
}

val composeVersion = "1.0.0-beta02"
val composeVersion = "1.0.0-beta03"

android {
compileSdkVersion(29)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,14 @@ private fun Time(viewModel: GameMasterViewModel, time: DateTime.TimeOfDay) {

withContext(Dispatchers.Main) { dialog.hide() }
}

}
)

buttons {
positiveButton(stringResource(R.string.button_save))
negativeButton(stringResource(R.string.button_cancel))
}
}

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

dependencies {
classpath("com.android.tools.build:gradle:7.0.0-alpha08")
classpath("com.android.tools.build:gradle:7.0.0-alpha12")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.30")

// Firebase-related dependencies
Expand Down

0 comments on commit 4833023

Please sign in to comment.