Skip to content

Commit

Permalink
Merge pull request #33 from vipulyaara/develop
Browse files Browse the repository at this point in the history
Release 0.43.0
  • Loading branch information
vipulyaara authored Sep 11, 2024
2 parents 20fc7c8 + 0d549b3 commit e90c30e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ android {

defaultConfig {
applicationId = "com.kafka.user"
versionCode = 82
versionName = "0.42.0"
versionCode = 83
versionName = "0.43.0"

val properties = Properties()
properties.load(project.rootProject.file("local.properties").inputStream())
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/kafka/user/home/AppNavigation.kt
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ inline fun <reified T : ViewModel> activityHiltViewModel() =
@Composable
private fun SwitchStatusBarsOnPlayer(navController: NavHostController) {
val currentRoute by navController.currentBackStackEntryAsState()
val destination = currentRoute?.destination?.route?.split("/")?.getOrNull(1)
val destination = currentRoute?.destination?.route?.substringBefore("/")
val isPlayerUp = destination == "player"

val view = LocalView.current
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ interface KafkaDatabase {
autoMigrations = [
AutoMigration(from = 3, to = 4, spec = KafkaRoomDatabase.UserRemovalMigration::class),
AutoMigration(from = 4, to = 5, spec = KafkaRoomDatabase.RecentAudioMigration::class),
AutoMigration(from = 5, to = 8),
AutoMigration(from = 6, to = 8),
AutoMigration(from = 7, to = 8),
],
)
Expand Down

0 comments on commit e90c30e

Please sign in to comment.