[REQUIRED] Step 1: Describe your environment
- Xcode version: 11.3
- Firebase SDK version: See below. Podfile just specifies unversioned
Firebase/Crashlytics and Firebase/Analytics
- Firebase Component: Firebase/Analytics (6.23.0), Firebase/Core (6.23.0), Firebase/CoreOnly (6.23.0), Firebase/Crashlytics (6.23.0), FirebaseCore (6.6.7), FirebaseCoreDiagnostics, FirebaseCoreDiagnosticsInterop, FirebaseCrashlytics (4.0.0), FirebaseInstallations (1.2.0), various Google subspecs
- Component version: See above
- Installation method: CocoaPods
[REQUIRED] Step 2: Describe the problem
Steps to reproduce:
This is for a macOS application, running on macOS 10.15.4. I see the issue when signing my app with a Developer ID cert with the DEBUG flag, but I don't see it when running with a macOS Development certificate.
In applicationDidFinishLaunching, I have simply:
Upon launch I then see this:

I haven't tried to proceed by entering my password, or Denying the request.
Relevant Code:
import Cocoa
import Firebase
import FirebaseCrashlytics
@NSApplicationMain class AppDelegate: NSApplicationDelegate {
func adfl() {
FirebaseApp.configure()
}
}
Is there a workaround for this, so I can avoid spooking my users with this keychain perms request? Thanks!