Source: https://fyno.docs.pageloop.ai/sd-ks/mobile-push/react-native-push-sdk/faqs

# FAQs

#### Build Issue: Error (Xcode): Cycle inside Runner; building could produce unreliable results

In **Xcode** > **Targets** > **Runner** > **Build Phases**, drag and arrange Embed Frameworks, \[CP] Embed Pods Frameworks, and Embed Foundation Extensions so that they are above **Run Script**. Refer [this](https://developer.apple.com/forums/thread/730974) for more details.

![](/images/react_FAQ.png)

#### Pod install issue: \[!] The following Swift pods cannot yet be integrated as static libraries: The Swift pod fyno-push-ios depends upon FMDB, which does not define modules. To opt into those targets generating module maps (which is necessary to import them from Swift when building as static libraries), you may set use\_modular\_headers! globally in your Podfile, or specify :modular\_headers => true for particular dependencies.

Add `use_modular_headers!` in your Podfile similar to:

```Text title="Podfile" wordWrap
target '<application_name>' do
  use_modular_headers!
```

Also, comment the `:flipper_configuration => flipper_config,` line.
