Skip to content

Commit

Permalink
Making setFabricEnabled Flag optional for ReactFragments (#41211)
Browse files Browse the repository at this point in the history
Summary:
Making setFabricEnabled Flag optional for ReactFragments

## Changelog:
[ANDROID][CHANGED] - Continuation of PR: 36263

Pull Request resolved: #41211

Test Plan:
Kotlin Code Snippet to test:
```
supportFragmentManager
  .beginTransaction()
  .add(android.R.id.content,
     ReactFragment.Builder()
       .setComponentName("componentName")
       .setFabricEnabled(true)
       .build())
  .commit()
```

Reviewed By: cipolleschi

Differential Revision: D50732345

Pulled By: cortinico

fbshipit-source-id: 812fe1abeb8c09334bd755ce3a29f55ce8b7ac7b
  • Loading branch information
ricku44 authored and facebook-github-bot committed Oct 31, 2023
1 parent a2f3fa6 commit a337f6e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ public static class Builder {
public Builder() {
mComponentName = null;
mLaunchOptions = null;
mFabricEnabled = null;
mFabricEnabled = false;
}

/**
Expand Down

0 comments on commit a337f6e

Please sign in to comment.