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

Default value for Codable property that does not exists with PropertyWrapper – Ios swift

i created a propertyWrapper like this: @propertyWrapper public struct DefaultTodayDate: Codable { public var wrappedValue: Date private let dateFormatter: DateFormatter = { let formatter = DateFormatter() formatter.timeZone = TimeZone(secondsFromGMT: 0) formatter.locale = Locale(identifier: "en_US_POSIX") formatter.dateFormat = "y-MM-dd'T'HH:mm:ss" return formatter }()…

VIEW QUESTION
Back To Top
Search