TP-68141: Handling SO crash for DFM (#11638)

This commit is contained in:
Raaj Gopal
2024-07-02 14:02:19 +05:30
committed by GitHub
parent 29ccb8bd80
commit b7f8d68bed

View File

@@ -84,8 +84,12 @@ class ReactActivity : BaseActivity(), DefaultHardwareBackBtnHandler, RequestToCa
statusBarColor?.let { this.setStatusBarColor(it) }
} catch (e: UnsatisfiedLinkError) {
e.log()
// It will come here only for DFM cases where we need second launch to get it fixed.
finish()
} catch (e: Exception) {
e.log()
// It will come here only for DFM cases where we need second launch to get it fixed.
finish()
}
}