Setup:
PLATFORM AND VERSION: iOS Development environment: Xcode Version 16.0 (16A242d), macOS 14.6.1 Run-time configuration: iOS 15-18 tried with same error.
When building the app despite the fact it's pure Swift code getting error:
CaPark.swift file is here:
import Foundation
class CarPark: Identifiable, Decodable {
var carParkId: String
var address: String
var totalLots: String
var lotsAvailable: String?
var lotType:String
var lat: Double
var lng: Double
var couponEps: String
var agency: String
}
Issue seems like started after xcode update to version mentioned above. What i've tried:
- Clean ups
- Reinstallation of Xcoce
- Rollback to previous versions of Xcode
- Start clean project from VCS
App is published and multiple versions were uploaded to AppStore, this problem is new and came out of nowhere.
Let me know if additional info is required. Thank you!