Skip to content

Commit

Permalink
Fix blank page on app activity restore
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelekol committed Dec 16, 2024
1 parent 6779bfe commit 98c6495
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ android {
compileSdk compile_sdk_version
minSdkVersion min_sdk_version
targetSdkVersion compile_sdk_version
versionCode 122
versionName "0.41.0"
versionCode 124
versionName "0.41.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

ksp {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package io.horizontalsystems.bankwallet.modules.main

import android.content.Intent
import android.os.Bundle
import androidx.activity.OnBackPressedCallback
import androidx.activity.compose.BackHandler
Expand Down Expand Up @@ -86,7 +87,8 @@ class MainFragment : BaseComposeFragment() {
)
} ?: run {
// Back stack entry doesn't exist, restart activity
requireActivity().recreate()
val intent = Intent(context, MainActivity::class.java)
requireActivity().startActivity(intent)
}
}

Expand Down

0 comments on commit 98c6495

Please sign in to comment.