Skip to content

Commit

Permalink
chore: throw error when failed to find fragment for react root view (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
kkafar authored Aug 19, 2022
1 parent b16fcea commit 7b69f8c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,11 +161,11 @@ open class ScreenContainer<T : ScreenFragment>(context: Context?) : ViewGroup(co
// `findFragment` method throws IllegalStateException when it fails to resolve appropriate
// fragment. It might happen when e.g. React Native is loaded directly in Activity
// but some custom fragments are still used. Such use case seems highly unlikely
// so, as for now we fallback to activity's FragmentManager in hope for the best.
// so, as for now we let application crash.
try {
FragmentManager.findFragment<Fragment>(rootView).childFragmentManager
} catch (ex: IllegalStateException) {
context.supportFragmentManager
throw IllegalStateException("Failed to find fragment for React Root View")
}
}
}
Expand Down

0 comments on commit 7b69f8c

Please sign in to comment.