Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SwiftUI iOS14 how to stop App clipboard notification when using Firebase

I recently updated my device to iOS 14 and now every time the app opens I get a notification with "AppName pasted from another devi..." I'm not doing anything myself to copy or paste the user clipboard so after some testings, I found that it happens only when I call FirebaseApp.configure() in the AppDelegate.

I'm still not sure which Firebase pod is calling this paste method but is there a way to stop this?

like image 879
Ludyem Avatar asked Jan 25 '23 22:01

Ludyem


1 Answers

This is due to a change Apple made to let users know when an app pastes information from the pasteboard. Watch the Build trust through better privacy WWDC video for more details.

The Firebase team is aware of this issue and is working on a fix. See this Github issue for more details.

like image 179
Peter Friese Avatar answered Jan 27 '23 13:01

Peter Friese