<!-- DO NOT DELETE validate_template=true template_path=.github/ISSUE_TEMPLATE/bug_report.md --> ### [REQUIRED] Step 1: Describe your environment * Xcode version: 11.7 or 12.0 (repros on both) * Firebase SDK version: 6.32.2 (`Firebase/Crashlytics (6.32.2)`) * Firebase Component: Core * Component version: 6.10.2 * Installation method: CocoaPods ### [REQUIRED] Step 2: Describe the problem Building my Swift/Objective-C mixed app with the latest version of 'Firebase/Crashlytics' results in the error: ``` 'FirebaseCore/FirebaseCore.h' file not found with <angled> include; use "quotes" instead ``` However, resetting my Podfile to include: ``` pod 'Firebase/Crashlytics', '=6.31.0' ``` fixes the error. I have a hunch that the problem stems from https://github.com/firebase/firebase-ios-sdk/pull/6367 <img width="922" alt="image" src="https://user-images.githubusercontent.com/2254/93408200-d4381380-f848-11ea-95a7-de58572e1763.png"> #### Steps to reproduce: In my case, the problem is reproducible when I upgrade `pod 'Firebase/Crashlytics'` past 6.31.0. #### Relevant Code: See above. If a full sample project is necessary to repro, please let me know and I'll do what I can to provide one.