skip to Main Content

iOS 16 + Firebase: The app references non-public selectors determineAppInstallationAttributionWithCompletionHandler:

I am trying to submit native app using Xcode to the App Store. The app is built with Firebase and SwiftUI for iOS 16. The submission finishes with the following warning: The app references non-public selectors in Payload/MyApp.app/MyApp: determineAppInstallationAttributionWithCompletionHandler:, lookupAdConversionDetails:,…

VIEW QUESTION

how to get snapshot all in an array flutter firebase cloud

I am trying to get all of the data info. in my firebase cloud firestore but am still struggling with the code: StreamBuilder<DocumentSnapshot?>( stream: FirebaseFirestore.instance .collection("groups") .doc(groupId) .snapshots(), builder: (context, snapshot) { return GridView.builder( gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount( crossAxisCount: 2, ),…

VIEW QUESTION
Back To Top
Search