Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Annotate DefaultTurboModuleManagerDelegate to avoid redex stripping d…
…ep in prod (facebook#46527) Summary: Pull Request resolved: facebook#46527 Changelog: [Internal] **Context** - `DefaultTurboModuleManagerDelegate.kt` was being stripped by redex since there was no direct dependency. - This was causing a crash in prod builds ``` Trace: java.lang.RuntimeException: Unable to create application com.facebook.mobilehome.MobileHomeAppShell: java.lang.ClassNotFoundException: Didn't find class "com.facebook.react.defaults.DefaultTurboModuleManagerDelegate" on path: DexPathList ``` **Change** - Annotate `DefaultTurboModuleManagerDelegate.kt` with `DoNotStripAny` - Don't strip `DoNotStripAny` annotated classes Reviewed By: mdvacca Differential Revision: D62766339 fbshipit-source-id: 7d9bfa04e252c392b94f739443bacf34f593e481
- Loading branch information