Build Information
Successful build of KVKCalendar, reference 0.6.29 (fbd59e
), with Swift 6.1 for iOS using Xcode 16.3 on 29 Apr 2025 21:18:58 UTC.
Swift 6 data race errors: 120
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme KVKCalendar -destination generic/platform=iOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
func didSelectAllDayEvent(_ event: Event, frame: CGRect?)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/AllDayView.swift:189:9: warning: main actor-isolated property 'style' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
var style: Style {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/AllDayView.swift:187:23: note: add '@preconcurrency' to the 'CalendarSettingProtocol' conformance to defer isolation checking to run time
extension AllDayView: CalendarSettingProtocol {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:319:9: note: requirement 'style' declared here
var style: Style { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/AllDayView.swift:198:10: warning: main actor-isolated instance method 'reloadFrame' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func reloadFrame(_ frame: CGRect) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/AllDayView.swift:198:10: note: add 'nonisolated' to 'reloadFrame' to make this instance method not isolated to the actor
func reloadFrame(_ frame: CGRect) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:321:10: note: mark the protocol requirement 'reloadFrame' 'async' to allow actor-isolated conformances
func reloadFrame(_ frame: CGRect)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/AllDayView.swift:202:10: warning: main actor-isolated instance method 'updateStyle(_:force:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func updateStyle(_ style: Style, force: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/AllDayView.swift:202:10: note: add 'nonisolated' to 'updateStyle(_:force:)' to make this instance method not isolated to the actor
func updateStyle(_ style: Style, force: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:322:10: note: mark the protocol requirement 'updateStyle(_:force:)' 'async' to allow actor-isolated conformances
func updateStyle(_ style: Style, force: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Calendar+Extension.swift:48:16: warning: static property 'timer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var timer: UInt8 = 0
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Calendar+Extension.swift:48:16: note: convert 'timer' to a 'let' constant to make 'Sendable' shared state immutable
static var timer: UInt8 = 0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Calendar+Extension.swift:48:16: note: add '@MainActor' to make static property 'timer' part of global actor 'MainActor'
static var timer: UInt8 = 0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Calendar+Extension.swift:48:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var timer: UInt8 = 0
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Calendar+Extension.swift:307:23: warning: main actor-isolated static property 'kvkIdentifier' cannot be used to satisfy nonisolated requirement from protocol 'KVKCellIdentifierProxy'; this is an error in the Swift 6 language mode
public static var kvkIdentifier: String {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Calendar+Extension.swift:305:19: note: add '@preconcurrency' to the 'KVKCellIdentifierProxy' conformance to defer isolation checking to run time
extension UIView: KVKCellIdentifierProxy {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Calendar+Extension.swift:301:16: note: requirement 'kvkIdentifier' declared here
static var kvkIdentifier: String { get }
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Calendar+Extension.swift:318:9: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
id: String = T.kvkIdentifier,
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Calendar+Extension.swift:337:36: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
func kvkDequeueView<T: UIView>(id: String = T.kvkIdentifier, configure: (T) -> Void) -> T {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Calendar+Extension.swift:356:9: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
id: String = T.kvkIdentifier,
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Calendar+Extension.swift:373:54: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
func kvkDequeueView<T: UICollectionReusableView>(id: String = T.kvkIdentifier, kind: String = UICollectionView.elementKindSectionHeader, indexPath: IndexPath, configure: (T) -> Void) -> T {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Calendar+Extension.swift:373:84: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
func kvkDequeueView<T: UICollectionReusableView>(id: String = T.kvkIdentifier, kind: String = UICollectionView.elementKindSectionHeader, indexPath: IndexPath, configure: (T) -> Void) -> T {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CurrentLineView.swift:75:9: warning: main actor-isolated property 'style' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
var style: Style {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CurrentLineView.swift:73:28: note: add '@preconcurrency' to the 'CalendarSettingProtocol' conformance to defer isolation checking to run time
extension CurrentLineView: CalendarSettingProtocol {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:319:9: note: requirement 'style' declared here
var style: Style { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CurrentLineView.swift:158:10: warning: main actor-isolated instance method 'reloadFrame' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func reloadFrame(_ frame: CGRect) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CurrentLineView.swift:158:10: note: add 'nonisolated' to 'reloadFrame' to make this instance method not isolated to the actor
func reloadFrame(_ frame: CGRect) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:321:10: note: mark the protocol requirement 'reloadFrame' 'async' to allow actor-isolated conformances
func reloadFrame(_ frame: CGRect)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CurrentLineView.swift:152:10: warning: main actor-isolated instance method 'updateStyle(_:force:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func updateStyle(_ style: Style, force: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CurrentLineView.swift:152:10: note: add 'nonisolated' to 'updateStyle(_:force:)' to make this instance method not isolated to the actor
func updateStyle(_ style: Style, force: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:322:10: note: mark the protocol requirement 'updateStyle(_:force:)' 'async' to allow actor-isolated conformances
func updateStyle(_ style: Style, force: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:93:10: warning: main actor-isolated instance method 'didDisplayEvents(_:dates:)' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func didDisplayEvents(_ events: [Event], dates: [Date?]) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:93:10: note: add 'nonisolated' to 'didDisplayEvents(_:dates:)' to make this instance method not isolated to the actor
func didDisplayEvents(_ events: [Event], dates: [Date?]) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:91:20: note: add '@preconcurrency' to the 'TimelineDelegate' conformance to defer isolation checking to run time
extension DayView: TimelineDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:25:10: note: mark the protocol requirement 'didDisplayEvents(_:dates:)' 'async' to allow actor-isolated conformances
func didDisplayEvents(_ events: [Event], dates: [Date?])
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:97:10: warning: main actor-isolated instance method 'didSelectEvent(_:frame:)' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func didSelectEvent(_ event: Event, frame: CGRect?) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:97:10: note: add 'nonisolated' to 'didSelectEvent(_:frame:)' to make this instance method not isolated to the actor
func didSelectEvent(_ event: Event, frame: CGRect?) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:26:10: note: mark the protocol requirement 'didSelectEvent(_:frame:)' 'async' to allow actor-isolated conformances
func didSelectEvent(_ event: Event, frame: CGRect?)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:101:10: warning: main actor-isolated instance method 'nextDate()' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func nextDate() {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:101:10: note: add 'nonisolated' to 'nextDate()' to make this instance method not isolated to the actor
func nextDate() {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:27:10: note: mark the protocol requirement 'nextDate()' 'async' to allow actor-isolated conformances
func nextDate()
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:107:10: warning: main actor-isolated instance method 'previousDate()' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func previousDate() {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:107:10: note: add 'nonisolated' to 'previousDate()' to make this instance method not isolated to the actor
func previousDate() {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:28:10: note: mark the protocol requirement 'previousDate()' 'async' to allow actor-isolated conformances
func previousDate()
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:155:10: warning: main actor-isolated instance method 'didChangeEvent(_:minute:hour:point:newDate:)' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func didChangeEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint, newDate: Date?) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:155:10: note: add 'nonisolated' to 'didChangeEvent(_:minute:hour:point:newDate:)' to make this instance method not isolated to the actor
func didChangeEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint, newDate: Date?) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:30:10: note: mark the protocol requirement 'didChangeEvent(_:minute:hour:point:newDate:)' 'async' to allow actor-isolated conformances
func didChangeEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint, newDate: Date?)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:133:10: warning: main actor-isolated instance method 'willAddNewEvent(_:minute:hour:point:)' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func willAddNewEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint) -> Event? {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:133:10: note: add 'nonisolated' to 'willAddNewEvent(_:minute:hour:point:)' to make this instance method not isolated to the actor
func willAddNewEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint) -> Event? {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:31:10: note: mark the protocol requirement 'willAddNewEvent(_:minute:hour:point:)' 'async' to allow actor-isolated conformances
func willAddNewEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint) -> Event?
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:144:10: warning: main actor-isolated instance method 'didAddNewEvent(_:minute:hour:point:)' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func didAddNewEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:144:10: note: add 'nonisolated' to 'didAddNewEvent(_:minute:hour:point:)' to make this instance method not isolated to the actor
func didAddNewEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:32:10: note: mark the protocol requirement 'didAddNewEvent(_:minute:hour:point:)' 'async' to allow actor-isolated conformances
func didAddNewEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:113:10: warning: main actor-isolated instance method 'didResizeEvent(_:startTime:endTime:)' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func didResizeEvent(_ event: Event, startTime: ResizeTime, endTime: ResizeTime) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:113:10: note: add 'nonisolated' to 'didResizeEvent(_:startTime:endTime:)' to make this instance method not isolated to the actor
func didResizeEvent(_ event: Event, startTime: ResizeTime, endTime: ResizeTime) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:33:10: note: mark the protocol requirement 'didResizeEvent(_:startTime:endTime:)' 'async' to allow actor-isolated conformances
func didResizeEvent(_ event: Event, startTime: ResizeTime, endTime: ResizeTime)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:176:10: warning: main actor-isolated instance method 'dequeueTimeLabel' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func dequeueTimeLabel(_ label: TimelineLabel) -> (current: TimelineLabel, others: [UILabel])? {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:176:10: note: add 'nonisolated' to 'dequeueTimeLabel' to make this instance method not isolated to the actor
func dequeueTimeLabel(_ label: TimelineLabel) -> (current: TimelineLabel, others: [UILabel])? {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:34:10: note: mark the protocol requirement 'dequeueTimeLabel' 'async' to allow actor-isolated conformances
func dequeueTimeLabel(_ label: TimelineLabel) -> (current: TimelineLabel, others: [UILabel])?
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:183:9: warning: main actor-isolated property 'style' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
var style: Style {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:181:20: note: add '@preconcurrency' to the 'CalendarSettingProtocol' conformance to defer isolation checking to run time
extension DayView: CalendarSettingProtocol {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:319:9: note: requirement 'style' declared here
var style: Style { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:193:10: warning: main actor-isolated instance method 'reloadFrame' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func reloadFrame(_ frame: CGRect) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:193:10: note: add 'nonisolated' to 'reloadFrame' to make this instance method not isolated to the actor
func reloadFrame(_ frame: CGRect) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:321:10: note: mark the protocol requirement 'reloadFrame' 'async' to allow actor-isolated conformances
func reloadFrame(_ frame: CGRect)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:236:10: warning: main actor-isolated instance method 'updateStyle(_:force:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func updateStyle(_ style: Style, force: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:236:10: note: add 'nonisolated' to 'updateStyle(_:force:)' to make this instance method not isolated to the actor
func updateStyle(_ style: Style, force: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:322:10: note: mark the protocol requirement 'updateStyle(_:force:)' 'async' to allow actor-isolated conformances
func updateStyle(_ style: Style, force: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:59:10: warning: main actor-isolated instance method 'reloadData' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func reloadData(_ events: [Event]) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:59:10: note: add 'nonisolated' to 'reloadData' to make this instance method not isolated to the actor
func reloadData(_ events: [Event]) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:323:10: note: mark the protocol requirement 'reloadData' 'async' to allow actor-isolated conformances
func reloadData(_ events: [Event])
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:54:10: warning: main actor-isolated instance method 'setDate(_:animated:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func setDate(_ date: Date, animated: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DayView.swift:54:10: note: add 'nonisolated' to 'setDate(_:animated:)' to make this instance method not isolated to the actor
func setDate(_ date: Date, animated: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:324:10: note: mark the protocol requirement 'setDate(_:animated:)' 'async' to allow actor-isolated conformances
func setDate(_ date: Date, animated: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DividerView.swift:55:9: warning: main actor-isolated property 'style' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
var style: Style {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DividerView.swift:53:24: note: add '@preconcurrency' to the 'CalendarSettingProtocol' conformance to defer isolation checking to run time
extension DividerView: CalendarSettingProtocol {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:319:9: note: requirement 'style' declared here
var style: Style { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DividerView.swift:64:10: warning: main actor-isolated instance method 'reloadFrame' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func reloadFrame(_ frame: CGRect) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DividerView.swift:64:10: note: add 'nonisolated' to 'reloadFrame' to make this instance method not isolated to the actor
func reloadFrame(_ frame: CGRect) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:321:10: note: mark the protocol requirement 'reloadFrame' 'async' to allow actor-isolated conformances
func reloadFrame(_ frame: CGRect)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DividerView.swift:70:10: warning: main actor-isolated instance method 'updateStyle(_:force:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func updateStyle(_ style: Style, force: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/DividerView.swift:70:10: note: add 'nonisolated' to 'updateStyle(_:force:)' to make this instance method not isolated to the actor
func updateStyle(_ style: Style, force: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:322:10: note: mark the protocol requirement 'updateStyle(_:force:)' 'async' to allow actor-isolated conformances
func updateStyle(_ style: Style, force: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:254:17: warning: main actor-isolated instance method 'willDisplayEventView(_:frame:date:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDataSource'; this is an error in the Swift 6 language mode
public func willDisplayEventView(_ event: Event, frame: CGRect, date: Date?) -> EventViewGeneral? {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:254:17: note: add 'nonisolated' to 'willDisplayEventView(_:frame:date:)' to make this instance method not isolated to the actor
public func willDisplayEventView(_ event: Event, frame: CGRect, date: Date?) -> EventViewGeneral? {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:405:10: note: mark the protocol requirement 'willDisplayEventView(_:frame:date:)' 'async' to allow actor-isolated conformances
func willDisplayEventView(_ event: Event, frame: CGRect, date: Date?) -> EventViewGeneral?
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:258:17: warning: main actor-isolated instance method 'willDisplayHeaderSubview(date:frame:type:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDataSource'; this is an error in the Swift 6 language mode
public func willDisplayHeaderSubview(date: Date?, frame: CGRect, type: CalendarType) -> UIView? {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:258:17: note: add 'nonisolated' to 'willDisplayHeaderSubview(date:frame:type:)' to make this instance method not isolated to the actor
public func willDisplayHeaderSubview(date: Date?, frame: CGRect, type: CalendarType) -> UIView? {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:408:10: note: mark the protocol requirement 'willDisplayHeaderSubview(date:frame:type:)' 'async' to allow actor-isolated conformances
func willDisplayHeaderSubview(date: Date?, frame: CGRect, type: CalendarType) -> UIView?
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:250:17: warning: main actor-isolated instance method 'willDisplayCollectionView(frame:type:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDataSource'; this is an error in the Swift 6 language mode
public func willDisplayCollectionView(frame: CGRect, type: CalendarType) -> UICollectionView? {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:250:17: note: add 'nonisolated' to 'willDisplayCollectionView(frame:type:)' to make this instance method not isolated to the actor
public func willDisplayCollectionView(frame: CGRect, type: CalendarType) -> UICollectionView? {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:414:10: note: mark the protocol requirement 'willDisplayCollectionView(frame:type:)' 'async' to allow actor-isolated conformances
func willDisplayCollectionView(frame: CGRect, type: CalendarType) -> UICollectionView?
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:267:17: warning: main actor-isolated instance method 'willDisplayEventViewer(date:frame:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDataSource'; this is an error in the Swift 6 language mode
public func willDisplayEventViewer(date: Date, frame: CGRect) -> UIView? {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:267:17: note: add 'nonisolated' to 'willDisplayEventViewer(date:frame:)' to make this instance method not isolated to the actor
public func willDisplayEventViewer(date: Date, frame: CGRect) -> UIView? {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:416:10: note: mark the protocol requirement 'willDisplayEventViewer(date:frame:)' 'async' to allow actor-isolated conformances
func willDisplayEventViewer(date: Date, frame: CGRect) -> UIView?
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:242:17: warning: main actor-isolated instance method 'dequeueCell(parameter:type:view:indexPath:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDataSource'; this is an error in the Swift 6 language mode
public func dequeueCell<T>(parameter: CellParameter, type: CalendarType, view: T, indexPath: IndexPath) -> KVKCalendarCellProtocol? where T : UIScrollView {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:242:17: note: add 'nonisolated' to 'dequeueCell(parameter:type:view:indexPath:)' to make this instance method not isolated to the actor
public func dequeueCell<T>(parameter: CellParameter, type: CalendarType, view: T, indexPath: IndexPath) -> KVKCalendarCellProtocol? where T : UIScrollView {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:434:10: note: mark the protocol requirement 'dequeueCell(parameter:type:view:indexPath:)' 'async' to allow actor-isolated conformances
func dequeueCell<T: UIScrollView>(parameter: CellParameter, type: CalendarType, view: T, indexPath: IndexPath) -> KVKCalendarCellProtocol?
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:246:17: warning: main actor-isolated instance method 'dequeueHeader(date:type:view:indexPath:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDataSource'; this is an error in the Swift 6 language mode
public func dequeueHeader<T>(date: Date?, type: CalendarType, view: T, indexPath: IndexPath) -> KVKCalendarHeaderProtocol? where T : UIScrollView {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:246:17: note: add 'nonisolated' to 'dequeueHeader(date:type:view:indexPath:)' to make this instance method not isolated to the actor
public func dequeueHeader<T>(date: Date?, type: CalendarType, view: T, indexPath: IndexPath) -> KVKCalendarHeaderProtocol? where T : UIScrollView {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:437:10: note: mark the protocol requirement 'dequeueHeader(date:type:view:indexPath:)' 'async' to allow actor-isolated conformances
func dequeueHeader<T: UIScrollView>(date: Date?, type: CalendarType, view: T, indexPath: IndexPath) -> KVKCalendarHeaderProtocol?
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:272:17: warning: main actor-isolated instance method 'willDisplayEventOptionMenu(_:type:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDataSource'; this is an error in the Swift 6 language mode
public func willDisplayEventOptionMenu(_ event: Event, type: CalendarType) -> (menu: UIMenu, customButton: UIButton?)? {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:272:17: note: add 'nonisolated' to 'willDisplayEventOptionMenu(_:type:)' to make this instance method not isolated to the actor
public func willDisplayEventOptionMenu(_ event: Event, type: CalendarType) -> (menu: UIMenu, customButton: UIButton?)? {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:440:10: note: mark the protocol requirement 'willDisplayEventOptionMenu(_:type:)' 'async' to allow actor-isolated conformances
func willDisplayEventOptionMenu(_ event: Event, type: CalendarType) -> (menu: UIMenu, customButton: UIButton?)?
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:276:17: warning: main actor-isolated instance method 'dequeueMonthViewEvents(_:date:frame:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDataSource'; this is an error in the Swift 6 language mode
public func dequeueMonthViewEvents(_ events: [Event], date: Date, frame: CGRect) -> UIView? {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:276:17: note: add 'nonisolated' to 'dequeueMonthViewEvents(_:date:frame:)' to make this instance method not isolated to the actor
public func dequeueMonthViewEvents(_ events: [Event], date: Date, frame: CGRect) -> UIView? {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:443:10: note: mark the protocol requirement 'dequeueMonthViewEvents(_:date:frame:)' 'async' to allow actor-isolated conformances
func dequeueMonthViewEvents(_ events: [Event], date: Date, frame: CGRect) -> UIView?
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:280:17: warning: main actor-isolated instance method 'dequeueAllDayViewEvent(_:date:frame:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDataSource'; this is an error in the Swift 6 language mode
public func dequeueAllDayViewEvent(_ event: Event, date: Date, frame: CGRect) -> UIView? {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:280:17: note: add 'nonisolated' to 'dequeueAllDayViewEvent(_:date:frame:)' to make this instance method not isolated to the actor
public func dequeueAllDayViewEvent(_ event: Event, date: Date, frame: CGRect) -> UIView? {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:446:10: note: mark the protocol requirement 'dequeueAllDayViewEvent(_:date:frame:)' 'async' to allow actor-isolated conformances
func dequeueAllDayViewEvent(_ event: Event, date: Date, frame: CGRect) -> UIView?
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:284:17: warning: main actor-isolated instance method 'dequeueTimeLabel' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDataSource'; this is an error in the Swift 6 language mode
public func dequeueTimeLabel(_ label: TimelineLabel) -> (current: TimelineLabel, others: [UILabel])? {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:284:17: note: add 'nonisolated' to 'dequeueTimeLabel' to make this instance method not isolated to the actor
public func dequeueTimeLabel(_ label: TimelineLabel) -> (current: TimelineLabel, others: [UILabel])? {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:448:10: note: mark the protocol requirement 'dequeueTimeLabel' 'async' to allow actor-isolated conformances
func dequeueTimeLabel(_ label: TimelineLabel) -> (current: TimelineLabel, others: [UILabel])?
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:292:17: warning: main actor-isolated instance method 'dequeueCornerHeader(date:frame:type:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDataSource'; this is an error in the Swift 6 language mode
public func dequeueCornerHeader(date: Date, frame: CGRect, type: CalendarType) -> UIView? {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:292:17: note: add 'nonisolated' to 'dequeueCornerHeader(date:frame:type:)' to make this instance method not isolated to the actor
public func dequeueCornerHeader(date: Date, frame: CGRect, type: CalendarType) -> UIView? {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:450:10: note: mark the protocol requirement 'dequeueCornerHeader(date:frame:type:)' 'async' to allow actor-isolated conformances
func dequeueCornerHeader(date: Date, frame: CGRect, type: CalendarType) -> UIView?
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:288:17: warning: main actor-isolated instance method 'dequeueAllDayCornerHeader(date:frame:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDataSource'; this is an error in the Swift 6 language mode
public func dequeueAllDayCornerHeader(date: Date, frame: CGRect) -> UIView? {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:288:17: note: add 'nonisolated' to 'dequeueAllDayCornerHeader(date:frame:)' to make this instance method not isolated to the actor
public func dequeueAllDayCornerHeader(date: Date, frame: CGRect) -> UIView? {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:452:10: note: mark the protocol requirement 'dequeueAllDayCornerHeader(date:frame:)' 'async' to allow actor-isolated conformances
func dequeueAllDayCornerHeader(date: Date, frame: CGRect) -> UIView?
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:296:17: warning: main actor-isolated instance method 'willDisplaySectionsInListView' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDataSource'; this is an error in the Swift 6 language mode
public func willDisplaySectionsInListView(_ sections: [ListViewData.SectionListView]) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:296:17: note: add 'nonisolated' to 'willDisplaySectionsInListView' to make this instance method not isolated to the actor
public func willDisplaySectionsInListView(_ sections: [ListViewData.SectionListView]) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:454:10: note: mark the protocol requirement 'willDisplaySectionsInListView' 'async' to allow actor-isolated conformances
func willDisplaySectionsInListView(_ sections: [ListViewData.SectionListView])
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:311:10: warning: main actor-isolated instance method 'didDisplayEvents(_:dates:type:)' cannot be used to satisfy nonisolated requirement from protocol 'DisplayDelegate'; this is an error in the Swift 6 language mode
func didDisplayEvents(_ events: [Event], dates: [Date?], type: CalendarType) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:311:10: note: add 'nonisolated' to 'didDisplayEvents(_:dates:type:)' to make this instance method not isolated to the actor
func didDisplayEvents(_ events: [Event], dates: [Date?], type: CalendarType) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:302:28: note: add '@preconcurrency' to the 'DisplayDelegate' conformance to defer isolation checking to run time
extension KVKCalendarView: DisplayDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:617:10: note: mark the protocol requirement 'didDisplayEvents(_:dates:type:)' 'async' to allow actor-isolated conformances
func didDisplayEvents(_ events: [Event], dates: [Date?], type: CalendarType)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:303:17: warning: main actor-isolated instance method 'sizeForHeader(_:type:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDelegate'; this is an error in the Swift 6 language mode
public func sizeForHeader(_ date: Date?, type: CalendarType) -> CGSize? {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:303:17: note: add 'nonisolated' to 'sizeForHeader(_:type:)' to make this instance method not isolated to the actor
public func sizeForHeader(_ date: Date?, type: CalendarType) -> CGSize? {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:501:10: note: mark the protocol requirement 'sizeForHeader(_:type:)' 'async' to allow actor-isolated conformances
func sizeForHeader(_ date: Date?, type: CalendarType) -> CGSize?
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:307:17: warning: main actor-isolated instance method 'sizeForCell(_:type:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDelegate'; this is an error in the Swift 6 language mode
public func sizeForCell(_ date: Date?, type: CalendarType) -> CGSize? {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:307:17: note: add 'nonisolated' to 'sizeForCell(_:type:)' to make this instance method not isolated to the actor
public func sizeForCell(_ date: Date?, type: CalendarType) -> CGSize? {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:504:10: note: mark the protocol requirement 'sizeForCell(_:type:)' 'async' to allow actor-isolated conformances
func sizeForCell(_ date: Date?, type: CalendarType) -> CGSize?
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:317:17: warning: main actor-isolated instance method 'didSelectDates(_:type:frame:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDelegate'; this is an error in the Swift 6 language mode
public func didSelectDates(_ dates: [Date], type: CalendarType, frame: CGRect?) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:317:17: note: add 'nonisolated' to 'didSelectDates(_:type:frame:)' to make this instance method not isolated to the actor
public func didSelectDates(_ dates: [Date], type: CalendarType, frame: CGRect?) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:513:10: note: mark the protocol requirement 'didSelectDates(_:type:frame:)' 'async' to allow actor-isolated conformances
func didSelectDates(_ dates: [Date], type: CalendarType, frame: CGRect?)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:325:17: warning: main actor-isolated instance method 'didSelectEvent(_:type:frame:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDelegate'; this is an error in the Swift 6 language mode
public func didSelectEvent(_ event: Event, type: CalendarType, frame: CGRect?) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:325:17: note: add 'nonisolated' to 'didSelectEvent(_:type:frame:)' to make this instance method not isolated to the actor
public func didSelectEvent(_ event: Event, type: CalendarType, frame: CGRect?) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:516:10: note: mark the protocol requirement 'didSelectEvent(_:type:frame:)' 'async' to allow actor-isolated conformances
func didSelectEvent(_ event: Event, type: CalendarType, frame: CGRect?)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:329:17: warning: main actor-isolated instance method 'didSelectMore(_:frame:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDelegate'; this is an error in the Swift 6 language mode
public func didSelectMore(_ date: Date, frame: CGRect?) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:329:17: note: add 'nonisolated' to 'didSelectMore(_:frame:)' to make this instance method not isolated to the actor
public func didSelectMore(_ date: Date, frame: CGRect?) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:519:10: note: mark the protocol requirement 'didSelectMore(_:frame:)' 'async' to allow actor-isolated conformances
func didSelectMore(_ date: Date, frame: CGRect?)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:346:17: warning: main actor-isolated instance method 'didChangeViewerFrame' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDelegate'; this is an error in the Swift 6 language mode
public func didChangeViewerFrame(_ frame: CGRect) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:346:17: note: add 'nonisolated' to 'didChangeViewerFrame' to make this instance method not isolated to the actor
public func didChangeViewerFrame(_ frame: CGRect) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:528:10: note: mark the protocol requirement 'didChangeViewerFrame' 'async' to allow actor-isolated conformances
func didChangeViewerFrame(_ frame: CGRect)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:342:17: warning: main actor-isolated instance method 'didChangeEvent(_:start:end:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDelegate'; this is an error in the Swift 6 language mode
public func didChangeEvent(_ event: Event, start: Date?, end: Date?) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:342:17: note: add 'nonisolated' to 'didChangeEvent(_:start:end:)' to make this instance method not isolated to the actor
public func didChangeEvent(_ event: Event, start: Date?, end: Date?) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:531:10: note: mark the protocol requirement 'didChangeEvent(_:start:end:)' 'async' to allow actor-isolated conformances
func didChangeEvent(_ event: Event, start: Date?, end: Date?)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:333:17: warning: main actor-isolated instance method 'willAddNewEvent' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDelegate'; this is an error in the Swift 6 language mode
public func willAddNewEvent(_ event: Event, _ date: Date?) -> Event? {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:333:17: note: add 'nonisolated' to 'willAddNewEvent' to make this instance method not isolated to the actor
public func willAddNewEvent(_ event: Event, _ date: Date?) -> Event? {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:542:10: note: mark the protocol requirement 'willAddNewEvent' 'async' to allow actor-isolated conformances
func willAddNewEvent(_ event: Event, _ date: Date?) -> Event?
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:338:17: warning: main actor-isolated instance method 'didAddNewEvent' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDelegate'; this is an error in the Swift 6 language mode
public func didAddNewEvent(_ event: Event, _ date: Date?) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:338:17: note: add 'nonisolated' to 'didAddNewEvent' to make this instance method not isolated to the actor
public func didAddNewEvent(_ event: Event, _ date: Date?) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:545:10: note: mark the protocol requirement 'didAddNewEvent' 'async' to allow actor-isolated conformances
func didAddNewEvent(_ event: Event, _ date: Date?)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:352:17: warning: main actor-isolated instance method 'willSelectDate(_:type:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDelegate'; this is an error in the Swift 6 language mode
public func willSelectDate(_ date: Date, type: CalendarType) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:352:17: note: add 'nonisolated' to 'willSelectDate(_:type:)' to make this instance method not isolated to the actor
public func willSelectDate(_ date: Date, type: CalendarType) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:551:10: note: mark the protocol requirement 'willSelectDate(_:type:)' 'async' to allow actor-isolated conformances
func willSelectDate(_ date: Date, type: CalendarType)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:89:17: warning: main actor-isolated instance method 'deselectEvent(_:animated:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDelegate'; this is an error in the Swift 6 language mode
public func deselectEvent(_ event: Event, animated: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:89:17: note: add 'nonisolated' to 'deselectEvent(_:animated:)' to make this instance method not isolated to the actor
public func deselectEvent(_ event: Event, animated: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:557:10: note: mark the protocol requirement 'deselectEvent(_:animated:)' 'async' to allow actor-isolated conformances
func deselectEvent(_ event: Event, animated: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:321:17: warning: main actor-isolated instance method 'didDeselectEvent(_:animated:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDelegate'; this is an error in the Swift 6 language mode
public func didDeselectEvent(_ event: Event, animated: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:321:17: note: add 'nonisolated' to 'didDeselectEvent(_:animated:)' to make this instance method not isolated to the actor
public func didDeselectEvent(_ event: Event, animated: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:560:10: note: mark the protocol requirement 'didDeselectEvent(_:animated:)' 'async' to allow actor-isolated conformances
func didDeselectEvent(_ event: Event, animated: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:356:17: warning: main actor-isolated instance method 'didUpdateStyle(_:type:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDelegate'; this is an error in the Swift 6 language mode
public func didUpdateStyle(_ style: Style, type: CalendarType) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:356:17: note: add 'nonisolated' to 'didUpdateStyle(_:type:)' to make this instance method not isolated to the actor
public func didUpdateStyle(_ style: Style, type: CalendarType) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:562:10: note: mark the protocol requirement 'didUpdateStyle(_:type:)' 'async' to allow actor-isolated conformances
func didUpdateStyle(_ style: Style, type: CalendarType)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:362:17: warning: main actor-isolated instance method 'didDisplayHeaderTitle(_:style:type:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarDelegate'; this is an error in the Swift 6 language mode
public func didDisplayHeaderTitle(_ date: Date, style: Style, type: CalendarType) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/KVKCalendarView+Extension.swift:362:17: note: add 'nonisolated' to 'didDisplayHeaderTitle(_:style:type:)' to make this instance method not isolated to the actor
public func didDisplayHeaderTitle(_ date: Date, style: Style, type: CalendarType) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:565:10: note: mark the protocol requirement 'didDisplayHeaderTitle(_:style:type:)' 'async' to allow actor-isolated conformances
func didDisplayHeaderTitle(_ date: Date, style: Style, type: CalendarType)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ListView.swift:27:9: warning: main actor-isolated property 'style' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
var style: Style {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ListView.swift:12:30: note: add '@preconcurrency' to the 'CalendarSettingProtocol' conformance to defer isolation checking to run time
open class ListView: UIView, CalendarSettingProtocol {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:319:9: note: requirement 'style' declared here
var style: Style { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ListView.swift:83:10: warning: main actor-isolated instance method 'reloadFrame' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func reloadFrame(_ frame: CGRect) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ListView.swift:83:10: note: add 'nonisolated' to 'reloadFrame' to make this instance method not isolated to the actor
func reloadFrame(_ frame: CGRect) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:321:10: note: mark the protocol requirement 'reloadFrame' 'async' to allow actor-isolated conformances
func reloadFrame(_ frame: CGRect)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ListView.swift:73:10: warning: main actor-isolated instance method 'updateStyle(_:force:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func updateStyle(_ style: Style, force: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ListView.swift:73:10: note: add 'nonisolated' to 'updateStyle(_:force:)' to make this instance method not isolated to the actor
func updateStyle(_ style: Style, force: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:322:10: note: mark the protocol requirement 'updateStyle(_:force:)' 'async' to allow actor-isolated conformances
func updateStyle(_ style: Style, force: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ListView.swift:88:10: warning: main actor-isolated instance method 'reloadData' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func reloadData(_ events: [Event]) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ListView.swift:88:10: note: add 'nonisolated' to 'reloadData' to make this instance method not isolated to the actor
func reloadData(_ events: [Event]) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:323:10: note: mark the protocol requirement 'reloadData' 'async' to allow actor-isolated conformances
func reloadData(_ events: [Event])
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ListView.swift:99:10: warning: main actor-isolated instance method 'setDate(_:animated:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func setDate(_ date: Date, animated: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ListView.swift:99:10: note: add 'nonisolated' to 'setDate(_:animated:)' to make this instance method not isolated to the actor
func setDate(_ date: Date, animated: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:324:10: note: mark the protocol requirement 'setDate(_:animated:)' 'async' to allow actor-isolated conformances
func setDate(_ date: Date, animated: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthView.swift:188:9: warning: main actor-isolated property 'style' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
var style: Style {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthView.swift:186:22: note: add '@preconcurrency' to the 'CalendarSettingProtocol' conformance to defer isolation checking to run time
extension MonthView: CalendarSettingProtocol {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:319:9: note: requirement 'style' declared here
var style: Style { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthView.swift:197:10: warning: main actor-isolated instance method 'reloadFrame' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func reloadFrame(_ frame: CGRect) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthView.swift:197:10: note: add 'nonisolated' to 'reloadFrame' to make this instance method not isolated to the actor
func reloadFrame(_ frame: CGRect) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:321:10: note: mark the protocol requirement 'reloadFrame' 'async' to allow actor-isolated conformances
func reloadFrame(_ frame: CGRect)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthView.swift:233:10: warning: main actor-isolated instance method 'updateStyle(_:force:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func updateStyle(_ style: Style, force: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthView.swift:233:10: note: add 'nonisolated' to 'updateStyle(_:force:)' to make this instance method not isolated to the actor
func updateStyle(_ style: Style, force: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:322:10: note: mark the protocol requirement 'updateStyle(_:force:)' 'async' to allow actor-isolated conformances
func updateStyle(_ style: Style, force: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthView.swift:51:10: warning: main actor-isolated instance method 'reloadData' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func reloadData(_ events: [Event]) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthView.swift:51:10: note: add 'nonisolated' to 'reloadData' to make this instance method not isolated to the actor
func reloadData(_ events: [Event]) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:323:10: note: mark the protocol requirement 'reloadData' 'async' to allow actor-isolated conformances
func reloadData(_ events: [Event])
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthView.swift:43:10: warning: main actor-isolated instance method 'setDate(_:animated:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func setDate(_ date: Date, animated: Bool = false) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthView.swift:43:10: note: add 'nonisolated' to 'setDate(_:animated:)' to make this instance method not isolated to the actor
func setDate(_ date: Date, animated: Bool = false) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:324:10: note: mark the protocol requirement 'setDate(_:animated:)' 'async' to allow actor-isolated conformances
func setDate(_ date: Date, animated: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthView.swift:561:10: warning: main actor-isolated instance method 'didSelectEvent(_:frame:)' cannot be used to satisfy nonisolated requirement from protocol 'MonthCellDelegate'; this is an error in the Swift 6 language mode
func didSelectEvent(_ event: Event, frame: CGRect?) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthView.swift:561:10: note: add 'nonisolated' to 'didSelectEvent(_:frame:)' to make this instance method not isolated to the actor
func didSelectEvent(_ event: Event, frame: CGRect?) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthView.swift:551:22: note: add '@preconcurrency' to the 'MonthCellDelegate' conformance to defer isolation checking to run time
extension MonthView: MonthCellDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthCell.swift:478:10: note: mark the protocol requirement 'didSelectEvent(_:frame:)' 'async' to allow actor-isolated conformances
func didSelectEvent(_ event: Event, frame: CGRect?)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthView.swift:565:10: warning: main actor-isolated instance method 'didSelectMore(_:frame:)' cannot be used to satisfy nonisolated requirement from protocol 'MonthCellDelegate'; this is an error in the Swift 6 language mode
func didSelectMore(_ date: Date, frame: CGRect?) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthView.swift:565:10: note: add 'nonisolated' to 'didSelectMore(_:frame:)' to make this instance method not isolated to the actor
func didSelectMore(_ date: Date, frame: CGRect?) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthCell.swift:479:10: note: mark the protocol requirement 'didSelectMore(_:frame:)' 'async' to allow actor-isolated conformances
func didSelectMore(_ date: Date, frame: CGRect?)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthView.swift:569:10: warning: main actor-isolated instance method 'didStartMoveEvent(_:snapshot:gesture:)' cannot be used to satisfy nonisolated requirement from protocol 'MonthCellDelegate'; this is an error in the Swift 6 language mode
func didStartMoveEvent(_ event: EventViewGeneral, snapshot: UIView?, gesture: UILongPressGestureRecognizer) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthView.swift:569:10: note: add 'nonisolated' to 'didStartMoveEvent(_:snapshot:gesture:)' to make this instance method not isolated to the actor
func didStartMoveEvent(_ event: EventViewGeneral, snapshot: UIView?, gesture: UILongPressGestureRecognizer) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthCell.swift:480:10: note: mark the protocol requirement 'didStartMoveEvent(_:snapshot:gesture:)' 'async' to allow actor-isolated conformances
func didStartMoveEvent(_ event: EventViewGeneral, snapshot: UIView?, gesture: UILongPressGestureRecognizer)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthView.swift:590:10: warning: main actor-isolated instance method 'didEndMoveEvent(gesture:)' cannot be used to satisfy nonisolated requirement from protocol 'MonthCellDelegate'; this is an error in the Swift 6 language mode
func didEndMoveEvent(gesture: UILongPressGestureRecognizer) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthView.swift:590:10: note: add 'nonisolated' to 'didEndMoveEvent(gesture:)' to make this instance method not isolated to the actor
func didEndMoveEvent(gesture: UILongPressGestureRecognizer) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthCell.swift:481:10: note: mark the protocol requirement 'didEndMoveEvent(gesture:)' 'async' to allow actor-isolated conformances
func didEndMoveEvent(gesture: UILongPressGestureRecognizer)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthView.swift:624:10: warning: main actor-isolated instance method 'didChangeMoveEvent(gesture:)' cannot be used to satisfy nonisolated requirement from protocol 'MonthCellDelegate'; this is an error in the Swift 6 language mode
func didChangeMoveEvent(gesture: UIPanGestureRecognizer) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthView.swift:624:10: note: add 'nonisolated' to 'didChangeMoveEvent(gesture:)' to make this instance method not isolated to the actor
func didChangeMoveEvent(gesture: UIPanGestureRecognizer) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthCell.swift:482:10: note: mark the protocol requirement 'didChangeMoveEvent(gesture:)' 'async' to allow actor-isolated conformances
func didChangeMoveEvent(gesture: UIPanGestureRecognizer)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthView.swift:553:10: warning: main actor-isolated instance method 'dequeueViewEvents(_:date:frame:)' cannot be used to satisfy nonisolated requirement from protocol 'MonthCellDelegate'; this is an error in the Swift 6 language mode
func dequeueViewEvents(_ events: [Event], date: Date, frame: CGRect) -> UIView? {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthView.swift:553:10: note: add 'nonisolated' to 'dequeueViewEvents(_:date:frame:)' to make this instance method not isolated to the actor
func dequeueViewEvents(_ events: [Event], date: Date, frame: CGRect) -> UIView? {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/MonthCell.swift:483:10: note: mark the protocol requirement 'dequeueViewEvents(_:date:frame:)' 'async' to allow actor-isolated conformances
func dequeueViewEvents(_ events: [Event], date: Date, frame: CGRect) -> UIView?
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ScrollableWeekView.swift:192:9: warning: main actor-isolated property 'style' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
var style: Style {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ScrollableWeekView.swift:190:31: note: add '@preconcurrency' to the 'CalendarSettingProtocol' conformance to defer isolation checking to run time
extension ScrollableWeekView: CalendarSettingProtocol {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:319:9: note: requirement 'style' declared here
var style: Style { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ScrollableWeekView.swift:210:10: warning: main actor-isolated instance method 'reloadFrame' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func reloadFrame(_ frame: CGRect) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ScrollableWeekView.swift:210:10: note: add 'nonisolated' to 'reloadFrame' to make this instance method not isolated to the actor
func reloadFrame(_ frame: CGRect) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:321:10: note: mark the protocol requirement 'reloadFrame' 'async' to allow actor-isolated conformances
func reloadFrame(_ frame: CGRect)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ScrollableWeekView.swift:231:10: warning: main actor-isolated instance method 'updateStyle(_:force:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func updateStyle(_ style: Style, force: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ScrollableWeekView.swift:231:10: note: add 'nonisolated' to 'updateStyle(_:force:)' to make this instance method not isolated to the actor
func updateStyle(_ style: Style, force: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:322:10: note: mark the protocol requirement 'updateStyle(_:force:)' 'async' to allow actor-isolated conformances
func updateStyle(_ style: Style, force: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/SkeletonView.swift:89:13: warning: var 'skeletonViewAssociationKey' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var skeletonViewAssociationKey: UInt8 = 0
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/SkeletonView.swift:89:13: note: convert 'skeletonViewAssociationKey' to a 'let' constant to make 'Sendable' shared state immutable
private var skeletonViewAssociationKey: UInt8 = 0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/SkeletonView.swift:89:13: note: add '@MainActor' to make var 'skeletonViewAssociationKey' part of global actor 'MainActor'
private var skeletonViewAssociationKey: UInt8 = 0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/SkeletonView.swift:89:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var skeletonViewAssociationKey: UInt8 = 0
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:563:10: warning: main actor-isolated instance method 'didStart(gesture:type:)' cannot be used to satisfy nonisolated requirement from protocol 'ResizeEventViewDelegate'; this is an error in the Swift 6 language mode
func didStart(gesture: UIPanGestureRecognizer, type: ResizeEventView.ResizeEventViewType) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:563:10: note: add 'nonisolated' to 'didStart(gesture:type:)' to make this instance method not isolated to the actor
func didStart(gesture: UIPanGestureRecognizer, type: ResizeEventView.ResizeEventViewType) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:562:25: note: add '@preconcurrency' to the 'ResizeEventViewDelegate' conformance to defer isolation checking to run time
extension TimelineView: ResizeEventViewDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ResizeEventView.swift:176:10: note: mark the protocol requirement 'didStart(gesture:type:)' 'async' to allow actor-isolated conformances
func didStart(gesture: UIPanGestureRecognizer, type: ResizeEventView.ResizeEventViewType)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:587:10: warning: main actor-isolated instance method 'didEnd(gesture:type:)' cannot be used to satisfy nonisolated requirement from protocol 'ResizeEventViewDelegate'; this is an error in the Swift 6 language mode
func didEnd(gesture: UIPanGestureRecognizer, type: ResizeEventView.ResizeEventViewType) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:587:10: note: add 'nonisolated' to 'didEnd(gesture:type:)' to make this instance method not isolated to the actor
func didEnd(gesture: UIPanGestureRecognizer, type: ResizeEventView.ResizeEventViewType) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ResizeEventView.swift:177:10: note: mark the protocol requirement 'didEnd(gesture:type:)' 'async' to allow actor-isolated conformances
func didEnd(gesture: UIPanGestureRecognizer, type: ResizeEventView.ResizeEventViewType)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:591:10: warning: main actor-isolated instance method 'didStartMoveResizeEvent(_:gesture:view:)' cannot be used to satisfy nonisolated requirement from protocol 'ResizeEventViewDelegate'; this is an error in the Swift 6 language mode
func didStartMoveResizeEvent(_ event: Event, gesture: UIPanGestureRecognizer, view: UIView) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:591:10: note: add 'nonisolated' to 'didStartMoveResizeEvent(_:gesture:view:)' to make this instance method not isolated to the actor
func didStartMoveResizeEvent(_ event: Event, gesture: UIPanGestureRecognizer, view: UIView) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ResizeEventView.swift:178:10: note: mark the protocol requirement 'didStartMoveResizeEvent(_:gesture:view:)' 'async' to allow actor-isolated conformances
func didStartMoveResizeEvent(_ event: Event, gesture: UIPanGestureRecognizer, view: UIView)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:599:10: warning: main actor-isolated instance method 'didEndMoveResizeEvent(_:gesture:)' cannot be used to satisfy nonisolated requirement from protocol 'ResizeEventViewDelegate'; this is an error in the Swift 6 language mode
func didEndMoveResizeEvent(_ event: Event, gesture: UIPanGestureRecognizer) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:599:10: note: add 'nonisolated' to 'didEndMoveResizeEvent(_:gesture:)' to make this instance method not isolated to the actor
func didEndMoveResizeEvent(_ event: Event, gesture: UIPanGestureRecognizer) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ResizeEventView.swift:179:10: note: mark the protocol requirement 'didEndMoveResizeEvent(_:gesture:)' 'async' to allow actor-isolated conformances
func didEndMoveResizeEvent(_ event: Event, gesture: UIPanGestureRecognizer)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:595:10: warning: main actor-isolated instance method 'didChangeMoveResizeEvent(_:gesture:)' cannot be used to satisfy nonisolated requirement from protocol 'ResizeEventViewDelegate'; this is an error in the Swift 6 language mode
func didChangeMoveResizeEvent(_ event: Event, gesture: UIPanGestureRecognizer) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:595:10: note: add 'nonisolated' to 'didChangeMoveResizeEvent(_:gesture:)' to make this instance method not isolated to the actor
func didChangeMoveResizeEvent(_ event: Event, gesture: UIPanGestureRecognizer) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ResizeEventView.swift:180:10: note: mark the protocol requirement 'didChangeMoveResizeEvent(_:gesture:)' 'async' to allow actor-isolated conformances
func didChangeMoveResizeEvent(_ event: Event, gesture: UIPanGestureRecognizer)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:623:10: warning: main actor-isolated instance method 'didStartResizeEvent(_:gesture:view:)' cannot be used to satisfy nonisolated requirement from protocol 'EventDelegate'; this is an error in the Swift 6 language mode
func didStartResizeEvent(_ event: Event, gesture: UIGestureRecognizer, view: UIView) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:623:10: note: add 'nonisolated' to 'didStartResizeEvent(_:gesture:view:)' to make this instance method not isolated to the actor
func didStartResizeEvent(_ event: Event, gesture: UIGestureRecognizer, view: UIView) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:605:25: note: add '@preconcurrency' to the 'EventDelegate' conformance to defer isolation checking to run time
extension TimelineView: EventDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/EventViewGeneral.swift:200:10: note: mark the protocol requirement 'didStartResizeEvent(_:gesture:view:)' 'async' to allow actor-isolated conformances
func didStartResizeEvent(_ event: Event, gesture: UIGestureRecognizer, view: UIView)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:657:10: warning: main actor-isolated instance method 'didEndResizeEvent(_:gesture:)' cannot be used to satisfy nonisolated requirement from protocol 'EventDelegate'; this is an error in the Swift 6 language mode
func didEndResizeEvent(_ event: Event, gesture: UIGestureRecognizer) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:657:10: note: add 'nonisolated' to 'didEndResizeEvent(_:gesture:)' to make this instance method not isolated to the actor
func didEndResizeEvent(_ event: Event, gesture: UIGestureRecognizer) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/EventViewGeneral.swift:201:10: note: mark the protocol requirement 'didEndResizeEvent(_:gesture:)' 'async' to allow actor-isolated conformances
func didEndResizeEvent(_ event: Event, gesture: UIGestureRecognizer)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:661:10: warning: main actor-isolated instance method 'didStartMovingEvent(_:gesture:view:)' cannot be used to satisfy nonisolated requirement from protocol 'EventDelegate'; this is an error in the Swift 6 language mode
func didStartMovingEvent(_ event: Event, gesture: UIGestureRecognizer, view: UIView) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:661:10: note: add 'nonisolated' to 'didStartMovingEvent(_:gesture:view:)' to make this instance method not isolated to the actor
func didStartMovingEvent(_ event: Event, gesture: UIGestureRecognizer, view: UIView) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/EventViewGeneral.swift:202:10: note: mark the protocol requirement 'didStartMovingEvent(_:gesture:view:)' 'async' to allow actor-isolated conformances
func didStartMovingEvent(_ event: Event, gesture: UIGestureRecognizer, view: UIView)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:706:10: warning: main actor-isolated instance method 'didEndMovingEvent(_:gesture:)' cannot be used to satisfy nonisolated requirement from protocol 'EventDelegate'; this is an error in the Swift 6 language mode
func didEndMovingEvent(_ event: Event, gesture: UIGestureRecognizer) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:706:10: note: add 'nonisolated' to 'didEndMovingEvent(_:gesture:)' to make this instance method not isolated to the actor
func didEndMovingEvent(_ event: Event, gesture: UIGestureRecognizer) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/EventViewGeneral.swift:203:10: note: mark the protocol requirement 'didEndMovingEvent(_:gesture:)' 'async' to allow actor-isolated conformances
func didEndMovingEvent(_ event: Event, gesture: UIGestureRecognizer)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:739:10: warning: main actor-isolated instance method 'didChangeMovingEvent(_:gesture:)' cannot be used to satisfy nonisolated requirement from protocol 'EventDelegate'; this is an error in the Swift 6 language mode
func didChangeMovingEvent(_ event: Event, gesture: UIGestureRecognizer) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:739:10: note: add 'nonisolated' to 'didChangeMovingEvent(_:gesture:)' to make this instance method not isolated to the actor
func didChangeMovingEvent(_ event: Event, gesture: UIGestureRecognizer) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/EventViewGeneral.swift:204:10: note: mark the protocol requirement 'didChangeMovingEvent(_:gesture:)' 'async' to allow actor-isolated conformances
func didChangeMovingEvent(_ event: Event, gesture: UIGestureRecognizer)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:618:10: warning: main actor-isolated instance method 'didSelectEvent(_:gesture:)' cannot be used to satisfy nonisolated requirement from protocol 'EventDelegate'; this is an error in the Swift 6 language mode
func didSelectEvent(_ event: Event, gesture: UITapGestureRecognizer) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:618:10: note: add 'nonisolated' to 'didSelectEvent(_:gesture:)' to make this instance method not isolated to the actor
func didSelectEvent(_ event: Event, gesture: UITapGestureRecognizer) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/EventViewGeneral.swift:205:10: note: mark the protocol requirement 'didSelectEvent(_:gesture:)' 'async' to allow actor-isolated conformances
func didSelectEvent(_ event: Event, gesture: UITapGestureRecognizer)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:614:10: warning: main actor-isolated instance method 'deselectEvent' cannot be used to satisfy nonisolated requirement from protocol 'EventDelegate'; this is an error in the Swift 6 language mode
func deselectEvent(_ event: Event) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:614:10: note: add 'nonisolated' to 'deselectEvent' to make this instance method not isolated to the actor
func deselectEvent(_ event: Event) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/EventViewGeneral.swift:206:10: note: mark the protocol requirement 'deselectEvent' 'async' to allow actor-isolated conformances
func deselectEvent(_ event: Event)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:819:9: warning: main actor-isolated property 'style' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
var style: Style {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:817:25: note: add '@preconcurrency' to the 'CalendarSettingProtocol' conformance to defer isolation checking to run time
extension TimelineView: CalendarSettingProtocol {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:319:9: note: requirement 'style' declared here
var style: Style { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:839:10: warning: main actor-isolated instance method 'reloadFrame' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func reloadFrame(_ frame: CGRect) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:839:10: note: add 'nonisolated' to 'reloadFrame' to make this instance method not isolated to the actor
func reloadFrame(_ frame: CGRect) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:321:10: note: mark the protocol requirement 'reloadFrame' 'async' to allow actor-isolated conformances
func reloadFrame(_ frame: CGRect)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:845:10: warning: main actor-isolated instance method 'updateStyle(_:force:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func updateStyle(_ style: Style, force: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:845:10: note: add 'nonisolated' to 'updateStyle(_:force:)' to make this instance method not isolated to the actor
func updateStyle(_ style: Style, force: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:322:10: note: mark the protocol requirement 'updateStyle(_:force:)' 'async' to allow actor-isolated conformances
func updateStyle(_ style: Style, force: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:879:10: warning: main actor-isolated instance method 'didSelectAllDayEvent(_:frame:)' cannot be used to satisfy nonisolated requirement from protocol 'AllDayEventDelegate'; this is an error in the Swift 6 language mode
func didSelectAllDayEvent(_ event: Event, frame: CGRect?) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:879:10: note: add 'nonisolated' to 'didSelectAllDayEvent(_:frame:)' to make this instance method not isolated to the actor
func didSelectAllDayEvent(_ event: Event, frame: CGRect?) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:877:25: note: add '@preconcurrency' to the 'AllDayEventDelegate' conformance to defer isolation checking to run time
extension TimelineView: AllDayEventDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/AllDayEventModel.swift:29:10: note: mark the protocol requirement 'didSelectAllDayEvent(_:frame:)' 'async' to allow actor-isolated conformances
func didSelectAllDayEvent(_ event: Event, frame: CGRect?)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekHeaderView.swift:121:9: warning: main actor-isolated property 'style' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
var style: Style {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekHeaderView.swift:119:27: note: add '@preconcurrency' to the 'CalendarSettingProtocol' conformance to defer isolation checking to run time
extension WeekHeaderView: CalendarSettingProtocol {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:319:9: note: requirement 'style' declared here
var style: Style { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekHeaderView.swift:144:10: warning: main actor-isolated instance method 'reloadFrame' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func reloadFrame(_ frame: CGRect) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekHeaderView.swift:144:10: note: add 'nonisolated' to 'reloadFrame' to make this instance method not isolated to the actor
func reloadFrame(_ frame: CGRect) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:321:10: note: mark the protocol requirement 'reloadFrame' 'async' to allow actor-isolated conformances
func reloadFrame(_ frame: CGRect)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekHeaderView.swift:151:10: warning: main actor-isolated instance method 'updateStyle(_:force:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func updateStyle(_ style: Style, force: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekHeaderView.swift:151:10: note: add 'nonisolated' to 'updateStyle(_:force:)' to make this instance method not isolated to the actor
func updateStyle(_ style: Style, force: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:322:10: note: mark the protocol requirement 'updateStyle(_:force:)' 'async' to allow actor-isolated conformances
func updateStyle(_ style: Style, force: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:120:9: warning: main actor-isolated property 'style' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
var style: Style {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:118:21: note: add '@preconcurrency' to the 'CalendarSettingProtocol' conformance to defer isolation checking to run time
extension WeekView: CalendarSettingProtocol {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:319:9: note: requirement 'style' declared here
var style: Style { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:129:10: warning: main actor-isolated instance method 'reloadFrame' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func reloadFrame(_ frame: CGRect) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:129:10: note: add 'nonisolated' to 'reloadFrame' to make this instance method not isolated to the actor
func reloadFrame(_ frame: CGRect) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:321:10: note: mark the protocol requirement 'reloadFrame' 'async' to allow actor-isolated conformances
func reloadFrame(_ frame: CGRect)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:153:10: warning: main actor-isolated instance method 'updateStyle(_:force:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func updateStyle(_ style: Style, force: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:153:10: note: add 'nonisolated' to 'updateStyle(_:force:)' to make this instance method not isolated to the actor
func updateStyle(_ style: Style, force: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:322:10: note: mark the protocol requirement 'updateStyle(_:force:)' 'async' to allow actor-isolated conformances
func updateStyle(_ style: Style, force: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:64:10: warning: main actor-isolated instance method 'reloadData' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func reloadData(_ events: [Event]) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:64:10: note: add 'nonisolated' to 'reloadData' to make this instance method not isolated to the actor
func reloadData(_ events: [Event]) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:323:10: note: mark the protocol requirement 'reloadData' 'async' to allow actor-isolated conformances
func reloadData(_ events: [Event])
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:58:10: warning: main actor-isolated instance method 'setDate(_:animated:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func setDate(_ date: Date, animated: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:58:10: note: add 'nonisolated' to 'setDate(_:animated:)' to make this instance method not isolated to the actor
func setDate(_ date: Date, animated: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:324:10: note: mark the protocol requirement 'setDate(_:animated:)' 'async' to allow actor-isolated conformances
func setDate(_ date: Date, animated: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:328:10: warning: main actor-isolated instance method 'didDisplayEvents(_:dates:)' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func didDisplayEvents(_ events: [Event], dates: [Date?]) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:328:10: note: add 'nonisolated' to 'didDisplayEvents(_:dates:)' to make this instance method not isolated to the actor
func didDisplayEvents(_ events: [Event], dates: [Date?]) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:326:21: note: add '@preconcurrency' to the 'TimelineDelegate' conformance to defer isolation checking to run time
extension WeekView: TimelineDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:25:10: note: mark the protocol requirement 'didDisplayEvents(_:dates:)' 'async' to allow actor-isolated conformances
func didDisplayEvents(_ events: [Event], dates: [Date?])
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:332:10: warning: main actor-isolated instance method 'didSelectEvent(_:frame:)' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func didSelectEvent(_ event: Event, frame: CGRect?) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:332:10: note: add 'nonisolated' to 'didSelectEvent(_:frame:)' to make this instance method not isolated to the actor
func didSelectEvent(_ event: Event, frame: CGRect?) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:26:10: note: mark the protocol requirement 'didSelectEvent(_:frame:)' 'async' to allow actor-isolated conformances
func didSelectEvent(_ event: Event, frame: CGRect?)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:336:10: warning: main actor-isolated instance method 'nextDate()' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func nextDate() {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:336:10: note: add 'nonisolated' to 'nextDate()' to make this instance method not isolated to the actor
func nextDate() {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:27:10: note: mark the protocol requirement 'nextDate()' 'async' to allow actor-isolated conformances
func nextDate()
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:342:10: warning: main actor-isolated instance method 'previousDate()' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func previousDate() {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:342:10: note: add 'nonisolated' to 'previousDate()' to make this instance method not isolated to the actor
func previousDate() {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:28:10: note: mark the protocol requirement 'previousDate()' 'async' to allow actor-isolated conformances
func previousDate()
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:348:10: warning: main actor-isolated instance method 'swipeX(transform:stop:)' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func swipeX(transform: CGAffineTransform, stop: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:348:10: note: add 'nonisolated' to 'swipeX(transform:stop:)' to make this instance method not isolated to the actor
func swipeX(transform: CGAffineTransform, stop: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:29:10: note: mark the protocol requirement 'swipeX(transform:stop:)' 'async' to allow actor-isolated conformances
func swipeX(transform: CGAffineTransform, stop: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:395:10: warning: main actor-isolated instance method 'didChangeEvent(_:minute:hour:point:newDate:)' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func didChangeEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint, newDate: Date?) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:395:10: note: add 'nonisolated' to 'didChangeEvent(_:minute:hour:point:newDate:)' to make this instance method not isolated to the actor
func didChangeEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint, newDate: Date?) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:30:10: note: mark the protocol requirement 'didChangeEvent(_:minute:hour:point:newDate:)' 'async' to allow actor-isolated conformances
func didChangeEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint, newDate: Date?)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:373:10: warning: main actor-isolated instance method 'willAddNewEvent(_:minute:hour:point:)' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func willAddNewEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint) -> Event? {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:373:10: note: add 'nonisolated' to 'willAddNewEvent(_:minute:hour:point:)' to make this instance method not isolated to the actor
func willAddNewEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint) -> Event? {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:31:10: note: mark the protocol requirement 'willAddNewEvent(_:minute:hour:point:)' 'async' to allow actor-isolated conformances
func willAddNewEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint) -> Event?
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:384:10: warning: main actor-isolated instance method 'didAddNewEvent(_:minute:hour:point:)' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func didAddNewEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:384:10: note: add 'nonisolated' to 'didAddNewEvent(_:minute:hour:point:)' to make this instance method not isolated to the actor
func didAddNewEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:32:10: note: mark the protocol requirement 'didAddNewEvent(_:minute:hour:point:)' 'async' to allow actor-isolated conformances
func didAddNewEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:354:10: warning: main actor-isolated instance method 'didResizeEvent(_:startTime:endTime:)' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func didResizeEvent(_ event: Event, startTime: ResizeTime, endTime: ResizeTime) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:354:10: note: add 'nonisolated' to 'didResizeEvent(_:startTime:endTime:)' to make this instance method not isolated to the actor
func didResizeEvent(_ event: Event, startTime: ResizeTime, endTime: ResizeTime) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:33:10: note: mark the protocol requirement 'didResizeEvent(_:startTime:endTime:)' 'async' to allow actor-isolated conformances
func didResizeEvent(_ event: Event, startTime: ResizeTime, endTime: ResizeTime)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:448:10: warning: main actor-isolated instance method 'dequeueTimeLabel' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func dequeueTimeLabel(_ label: TimelineLabel) -> (current: TimelineLabel, others: [UILabel])? {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:448:10: note: add 'nonisolated' to 'dequeueTimeLabel' to make this instance method not isolated to the actor
func dequeueTimeLabel(_ label: TimelineLabel) -> (current: TimelineLabel, others: [UILabel])? {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:34:10: note: mark the protocol requirement 'dequeueTimeLabel' 'async' to allow actor-isolated conformances
func dequeueTimeLabel(_ label: TimelineLabel) -> (current: TimelineLabel, others: [UILabel])?
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearHeaderView.swift:33:9: warning: main actor-isolated property 'style' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
var style: Style = Style() {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearHeaderView.swift:52:27: note: add '@preconcurrency' to the 'CalendarSettingProtocol' conformance to defer isolation checking to run time
extension YearHeaderView: CalendarSettingProtocol {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:319:9: note: requirement 'style' declared here
var style: Style { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearHeaderView.swift:63:10: warning: main actor-isolated instance method 'reloadFrame' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func reloadFrame(_ frame: CGRect) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearHeaderView.swift:63:10: note: add 'nonisolated' to 'reloadFrame' to make this instance method not isolated to the actor
func reloadFrame(_ frame: CGRect) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:321:10: note: mark the protocol requirement 'reloadFrame' 'async' to allow actor-isolated conformances
func reloadFrame(_ frame: CGRect)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearHeaderView.swift:68:10: warning: main actor-isolated instance method 'updateStyle(_:force:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func updateStyle(_ style: Style, force: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearHeaderView.swift:68:10: note: add 'nonisolated' to 'updateStyle(_:force:)' to make this instance method not isolated to the actor
func updateStyle(_ style: Style, force: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:322:10: note: mark the protocol requirement 'updateStyle(_:force:)' 'async' to allow actor-isolated conformances
func updateStyle(_ style: Style, force: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearView.swift:94:9: warning: main actor-isolated property 'style' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
var style: Style {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearView.swift:92:21: note: add '@preconcurrency' to the 'CalendarSettingProtocol' conformance to defer isolation checking to run time
extension YearView: CalendarSettingProtocol {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:319:9: note: requirement 'style' declared here
var style: Style { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearView.swift:103:10: warning: main actor-isolated instance method 'reloadFrame' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func reloadFrame(_ frame: CGRect) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearView.swift:103:10: note: add 'nonisolated' to 'reloadFrame' to make this instance method not isolated to the actor
func reloadFrame(_ frame: CGRect) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:321:10: note: mark the protocol requirement 'reloadFrame' 'async' to allow actor-isolated conformances
func reloadFrame(_ frame: CGRect)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearView.swift:117:10: warning: main actor-isolated instance method 'updateStyle(_:force:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func updateStyle(_ style: Style, force: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearView.swift:117:10: note: add 'nonisolated' to 'updateStyle(_:force:)' to make this instance method not isolated to the actor
func updateStyle(_ style: Style, force: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:322:10: note: mark the protocol requirement 'updateStyle(_:force:)' 'async' to allow actor-isolated conformances
func updateStyle(_ style: Style, force: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearView.swift:37:10: warning: main actor-isolated instance method 'setDate(_:animated:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func setDate(_ date: Date, animated: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearView.swift:37:10: note: add 'nonisolated' to 'setDate(_:animated:)' to make this instance method not isolated to the actor
func setDate(_ date: Date, animated: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:324:10: note: mark the protocol requirement 'setDate(_:animated:)' 'async' to allow actor-isolated conformances
func setDate(_ date: Date, animated: Bool)
^
async
SwiftCompile normal arm64 Compiling\ TimelineView.swift,\ VerticalLineView.swift,\ WeekData.swift,\ WeekHeaderView.swift,\ WeekView.swift /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineView.swift /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/VerticalLineView.swift /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekData.swift /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekHeaderView.swift /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift (in target 'KVKCalendar' from project 'KVKCalendar')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineView.swift (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/VerticalLineView.swift (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekData.swift (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekHeaderView.swift (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekHeaderView.swift:121:9: warning: main actor-isolated property 'style' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
var style: Style {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekHeaderView.swift:119:27: note: add '@preconcurrency' to the 'CalendarSettingProtocol' conformance to defer isolation checking to run time
extension WeekHeaderView: CalendarSettingProtocol {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:319:9: note: requirement 'style' declared here
var style: Style { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekHeaderView.swift:144:10: warning: main actor-isolated instance method 'reloadFrame' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func reloadFrame(_ frame: CGRect) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekHeaderView.swift:144:10: note: add 'nonisolated' to 'reloadFrame' to make this instance method not isolated to the actor
func reloadFrame(_ frame: CGRect) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:321:10: note: mark the protocol requirement 'reloadFrame' 'async' to allow actor-isolated conformances
func reloadFrame(_ frame: CGRect)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekHeaderView.swift:151:10: warning: main actor-isolated instance method 'updateStyle(_:force:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func updateStyle(_ style: Style, force: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekHeaderView.swift:151:10: note: add 'nonisolated' to 'updateStyle(_:force:)' to make this instance method not isolated to the actor
func updateStyle(_ style: Style, force: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:322:10: note: mark the protocol requirement 'updateStyle(_:force:)' 'async' to allow actor-isolated conformances
func updateStyle(_ style: Style, force: Bool)
^
async
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:120:9: warning: main actor-isolated property 'style' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
var style: Style {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:118:21: note: add '@preconcurrency' to the 'CalendarSettingProtocol' conformance to defer isolation checking to run time
extension WeekView: CalendarSettingProtocol {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:319:9: note: requirement 'style' declared here
var style: Style { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:129:10: warning: main actor-isolated instance method 'reloadFrame' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func reloadFrame(_ frame: CGRect) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:129:10: note: add 'nonisolated' to 'reloadFrame' to make this instance method not isolated to the actor
func reloadFrame(_ frame: CGRect) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:321:10: note: mark the protocol requirement 'reloadFrame' 'async' to allow actor-isolated conformances
func reloadFrame(_ frame: CGRect)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:153:10: warning: main actor-isolated instance method 'updateStyle(_:force:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func updateStyle(_ style: Style, force: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:153:10: note: add 'nonisolated' to 'updateStyle(_:force:)' to make this instance method not isolated to the actor
func updateStyle(_ style: Style, force: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:322:10: note: mark the protocol requirement 'updateStyle(_:force:)' 'async' to allow actor-isolated conformances
func updateStyle(_ style: Style, force: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:64:10: warning: main actor-isolated instance method 'reloadData' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func reloadData(_ events: [Event]) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:64:10: note: add 'nonisolated' to 'reloadData' to make this instance method not isolated to the actor
func reloadData(_ events: [Event]) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:323:10: note: mark the protocol requirement 'reloadData' 'async' to allow actor-isolated conformances
func reloadData(_ events: [Event])
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:58:10: warning: main actor-isolated instance method 'setDate(_:animated:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func setDate(_ date: Date, animated: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:58:10: note: add 'nonisolated' to 'setDate(_:animated:)' to make this instance method not isolated to the actor
func setDate(_ date: Date, animated: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:324:10: note: mark the protocol requirement 'setDate(_:animated:)' 'async' to allow actor-isolated conformances
func setDate(_ date: Date, animated: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:328:10: warning: main actor-isolated instance method 'didDisplayEvents(_:dates:)' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func didDisplayEvents(_ events: [Event], dates: [Date?]) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:328:10: note: add 'nonisolated' to 'didDisplayEvents(_:dates:)' to make this instance method not isolated to the actor
func didDisplayEvents(_ events: [Event], dates: [Date?]) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:326:21: note: add '@preconcurrency' to the 'TimelineDelegate' conformance to defer isolation checking to run time
extension WeekView: TimelineDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:25:10: note: mark the protocol requirement 'didDisplayEvents(_:dates:)' 'async' to allow actor-isolated conformances
func didDisplayEvents(_ events: [Event], dates: [Date?])
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:332:10: warning: main actor-isolated instance method 'didSelectEvent(_:frame:)' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func didSelectEvent(_ event: Event, frame: CGRect?) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:332:10: note: add 'nonisolated' to 'didSelectEvent(_:frame:)' to make this instance method not isolated to the actor
func didSelectEvent(_ event: Event, frame: CGRect?) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:26:10: note: mark the protocol requirement 'didSelectEvent(_:frame:)' 'async' to allow actor-isolated conformances
func didSelectEvent(_ event: Event, frame: CGRect?)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:336:10: warning: main actor-isolated instance method 'nextDate()' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func nextDate() {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:336:10: note: add 'nonisolated' to 'nextDate()' to make this instance method not isolated to the actor
func nextDate() {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:27:10: note: mark the protocol requirement 'nextDate()' 'async' to allow actor-isolated conformances
func nextDate()
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:342:10: warning: main actor-isolated instance method 'previousDate()' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func previousDate() {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:342:10: note: add 'nonisolated' to 'previousDate()' to make this instance method not isolated to the actor
func previousDate() {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:28:10: note: mark the protocol requirement 'previousDate()' 'async' to allow actor-isolated conformances
func previousDate()
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:348:10: warning: main actor-isolated instance method 'swipeX(transform:stop:)' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func swipeX(transform: CGAffineTransform, stop: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:348:10: note: add 'nonisolated' to 'swipeX(transform:stop:)' to make this instance method not isolated to the actor
func swipeX(transform: CGAffineTransform, stop: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:29:10: note: mark the protocol requirement 'swipeX(transform:stop:)' 'async' to allow actor-isolated conformances
func swipeX(transform: CGAffineTransform, stop: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:395:10: warning: main actor-isolated instance method 'didChangeEvent(_:minute:hour:point:newDate:)' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func didChangeEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint, newDate: Date?) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:395:10: note: add 'nonisolated' to 'didChangeEvent(_:minute:hour:point:newDate:)' to make this instance method not isolated to the actor
func didChangeEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint, newDate: Date?) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:30:10: note: mark the protocol requirement 'didChangeEvent(_:minute:hour:point:newDate:)' 'async' to allow actor-isolated conformances
func didChangeEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint, newDate: Date?)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:373:10: warning: main actor-isolated instance method 'willAddNewEvent(_:minute:hour:point:)' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func willAddNewEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint) -> Event? {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:373:10: note: add 'nonisolated' to 'willAddNewEvent(_:minute:hour:point:)' to make this instance method not isolated to the actor
func willAddNewEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint) -> Event? {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:31:10: note: mark the protocol requirement 'willAddNewEvent(_:minute:hour:point:)' 'async' to allow actor-isolated conformances
func willAddNewEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint) -> Event?
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:384:10: warning: main actor-isolated instance method 'didAddNewEvent(_:minute:hour:point:)' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func didAddNewEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:384:10: note: add 'nonisolated' to 'didAddNewEvent(_:minute:hour:point:)' to make this instance method not isolated to the actor
func didAddNewEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:32:10: note: mark the protocol requirement 'didAddNewEvent(_:minute:hour:point:)' 'async' to allow actor-isolated conformances
func didAddNewEvent(_ event: Event, minute: Int, hour: Int, point: CGPoint)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:354:10: warning: main actor-isolated instance method 'didResizeEvent(_:startTime:endTime:)' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func didResizeEvent(_ event: Event, startTime: ResizeTime, endTime: ResizeTime) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:354:10: note: add 'nonisolated' to 'didResizeEvent(_:startTime:endTime:)' to make this instance method not isolated to the actor
func didResizeEvent(_ event: Event, startTime: ResizeTime, endTime: ResizeTime) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:33:10: note: mark the protocol requirement 'didResizeEvent(_:startTime:endTime:)' 'async' to allow actor-isolated conformances
func didResizeEvent(_ event: Event, startTime: ResizeTime, endTime: ResizeTime)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:448:10: warning: main actor-isolated instance method 'dequeueTimeLabel' cannot be used to satisfy nonisolated requirement from protocol 'TimelineDelegate'; this is an error in the Swift 6 language mode
func dequeueTimeLabel(_ label: TimelineLabel) -> (current: TimelineLabel, others: [UILabel])? {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/WeekView.swift:448:10: note: add 'nonisolated' to 'dequeueTimeLabel' to make this instance method not isolated to the actor
func dequeueTimeLabel(_ label: TimelineLabel) -> (current: TimelineLabel, others: [UILabel])? {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift:34:10: note: mark the protocol requirement 'dequeueTimeLabel' 'async' to allow actor-isolated conformances
func dequeueTimeLabel(_ label: TimelineLabel) -> (current: TimelineLabel, others: [UILabel])?
^
async
SwiftCompile normal arm64 Compiling\ TimelineContainerVC.swift,\ TimelineEventLayout.swift,\ TimelineLabel.swift,\ TimelineModel.swift,\ TimelinePageView.swift /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineContainerVC.swift /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineEventLayout.swift /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelinePageView.swift (in target 'KVKCalendar' from project 'KVKCalendar')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineContainerVC.swift (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineEventLayout.swift (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineEventLayout.swift:34:38: warning: main actor-isolated property 'hashTime' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if start.kvkHour == time.hashTime && start.kvkDay == date?.kvkDay {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineLabel.swift:14:16: note: property declared here
public var hashTime: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineEventLayout.swift:35:25: warning: main actor-isolated property 'tag' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if time.tag == midnight, let newTime = timeLabels.first {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:64: note: property declared here
@property(nonatomic) NSInteger tag; // default is 0
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineEventLayout.swift:47:43: warning: main actor-isolated property 'hashTime' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
} else if end.kvkHour == time.hashTime, end.kvkDay == date?.kvkDay {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineLabel.swift:14:16: note: property declared here
public var hashTime: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineEventLayout.swift:55:25: warning: main actor-isolated property 'tag' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
if time.tag == midnight, let newTime = timeLabels.first {
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:64: note: property declared here
@property(nonatomic) NSInteger tag; // default is 0
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineEventLayout.swift:59:52: warning: main actor-isolated property 'tag' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let summHeight = (CGFloat(timeTemp.tag) * (calculatedTimeY + timeTemp.frame.height)) - newFrame.origin.y + (timeTemp.frame.height / 2)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:64: note: property declared here
@property(nonatomic) NSInteger tag; // default is 0
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineEventLayout.swift:59:87: warning: main actor-isolated property 'frame' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let summHeight = (CGFloat(timeTemp.tag) * (calculatedTimeY + timeTemp.frame.height)) - newFrame.origin.y + (timeTemp.frame.height / 2)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:185:40: note: property declared here
@property(nonatomic) CGRect frame;
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineEventLayout.swift:59:134: warning: main actor-isolated property 'frame' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let summHeight = (CGFloat(timeTemp.tag) * (calculatedTimeY + timeTemp.frame.height)) - newFrame.origin.y + (timeTemp.frame.height / 2)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:185:40: note: property declared here
@property(nonatomic) CGRect frame;
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineEventLayout.swift:62:60: warning: main actor-isolated property 'frame' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let newY = (calculatedTimeY + timeTemp.frame.height) / minutePercent
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:185:40: note: property declared here
@property(nonatomic) CGRect frame;
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineEventLayout.swift:68:54: warning: main actor-isolated property 'tag' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
newFrame.size.height = (CGFloat(time.tag) * (calculatedTimeY + time.frame.height)) - newFrame.origin.y + (time.frame.height / 2)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:64: note: property declared here
@property(nonatomic) NSInteger tag; // default is 0
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineEventLayout.swift:68:85: warning: main actor-isolated property 'frame' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
newFrame.size.height = (CGFloat(time.tag) * (calculatedTimeY + time.frame.height)) - newFrame.origin.y + (time.frame.height / 2)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:185:40: note: property declared here
@property(nonatomic) CGRect frame;
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineEventLayout.swift:68:128: warning: main actor-isolated property 'frame' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
newFrame.size.height = (CGFloat(time.tag) * (calculatedTimeY + time.frame.height)) - newFrame.origin.y + (time.frame.height / 2)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:185:40: note: property declared here
@property(nonatomic) CGRect frame;
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineLabel.swift (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelineModel.swift (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/TimelinePageView.swift (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ YearCell.swift,\ YearData.swift,\ YearHeaderView.swift,\ YearRange.swift,\ YearView.swift /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearCell.swift /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearData.swift /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearHeaderView.swift /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearRange.swift /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearView.swift (in target 'KVKCalendar' from project 'KVKCalendar')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearCell.swift (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearData.swift (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearHeaderView.swift (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearHeaderView.swift:33:9: warning: main actor-isolated property 'style' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
var style: Style = Style() {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearHeaderView.swift:52:27: note: add '@preconcurrency' to the 'CalendarSettingProtocol' conformance to defer isolation checking to run time
extension YearHeaderView: CalendarSettingProtocol {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:319:9: note: requirement 'style' declared here
var style: Style { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearHeaderView.swift:63:10: warning: main actor-isolated instance method 'reloadFrame' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func reloadFrame(_ frame: CGRect) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearHeaderView.swift:63:10: note: add 'nonisolated' to 'reloadFrame' to make this instance method not isolated to the actor
func reloadFrame(_ frame: CGRect) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:321:10: note: mark the protocol requirement 'reloadFrame' 'async' to allow actor-isolated conformances
func reloadFrame(_ frame: CGRect)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearHeaderView.swift:68:10: warning: main actor-isolated instance method 'updateStyle(_:force:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func updateStyle(_ style: Style, force: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearHeaderView.swift:68:10: note: add 'nonisolated' to 'updateStyle(_:force:)' to make this instance method not isolated to the actor
func updateStyle(_ style: Style, force: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:322:10: note: mark the protocol requirement 'updateStyle(_:force:)' 'async' to allow actor-isolated conformances
func updateStyle(_ style: Style, force: Bool)
^
async
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearRange.swift (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearView.swift (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearView.swift:94:9: warning: main actor-isolated property 'style' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
var style: Style {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearView.swift:92:21: note: add '@preconcurrency' to the 'CalendarSettingProtocol' conformance to defer isolation checking to run time
extension YearView: CalendarSettingProtocol {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:319:9: note: requirement 'style' declared here
var style: Style { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearView.swift:103:10: warning: main actor-isolated instance method 'reloadFrame' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func reloadFrame(_ frame: CGRect) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearView.swift:103:10: note: add 'nonisolated' to 'reloadFrame' to make this instance method not isolated to the actor
func reloadFrame(_ frame: CGRect) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:321:10: note: mark the protocol requirement 'reloadFrame' 'async' to allow actor-isolated conformances
func reloadFrame(_ frame: CGRect)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearView.swift:117:10: warning: main actor-isolated instance method 'updateStyle(_:force:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func updateStyle(_ style: Style, force: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearView.swift:117:10: note: add 'nonisolated' to 'updateStyle(_:force:)' to make this instance method not isolated to the actor
func updateStyle(_ style: Style, force: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:322:10: note: mark the protocol requirement 'updateStyle(_:force:)' 'async' to allow actor-isolated conformances
func updateStyle(_ style: Style, force: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearView.swift:37:10: warning: main actor-isolated instance method 'setDate(_:animated:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func setDate(_ date: Date, animated: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/YearView.swift:37:10: note: add 'nonisolated' to 'setDate(_:animated:)' to make this instance method not isolated to the actor
func setDate(_ date: Date, animated: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:324:10: note: mark the protocol requirement 'setDate(_:animated:)' 'async' to allow actor-isolated conformances
func setDate(_ date: Date, animated: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Calendar+Extension.swift:356:9: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
id: String = T.kvkIdentifier,
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Calendar+Extension.swift:373:54: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
func kvkDequeueView<T: UICollectionReusableView>(id: String = T.kvkIdentifier, kind: String = UICollectionView.elementKindSectionHeader, indexPath: IndexPath, configure: (T) -> Void) -> T {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Calendar+Extension.swift:373:84: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
func kvkDequeueView<T: UICollectionReusableView>(id: String = T.kvkIdentifier, kind: String = UICollectionView.elementKindSectionHeader, indexPath: IndexPath, configure: (T) -> Void) -> T {
^
SwiftCompile normal arm64 Compiling\ StubEventView.swift,\ StubStackView.swift,\ Style.swift,\ SwiftUI+Extensions.swift,\ Timeline+Extension.swift /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/StubEventView.swift /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/StubStackView.swift /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Style.swift /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/SwiftUI+Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift (in target 'KVKCalendar' from project 'KVKCalendar')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/StubEventView.swift (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/StubStackView.swift (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Style.swift (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/SwiftUI+Extensions.swift (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:563:10: warning: main actor-isolated instance method 'didStart(gesture:type:)' cannot be used to satisfy nonisolated requirement from protocol 'ResizeEventViewDelegate'; this is an error in the Swift 6 language mode
func didStart(gesture: UIPanGestureRecognizer, type: ResizeEventView.ResizeEventViewType) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:563:10: note: add 'nonisolated' to 'didStart(gesture:type:)' to make this instance method not isolated to the actor
func didStart(gesture: UIPanGestureRecognizer, type: ResizeEventView.ResizeEventViewType) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:562:25: note: add '@preconcurrency' to the 'ResizeEventViewDelegate' conformance to defer isolation checking to run time
extension TimelineView: ResizeEventViewDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ResizeEventView.swift:176:10: note: mark the protocol requirement 'didStart(gesture:type:)' 'async' to allow actor-isolated conformances
func didStart(gesture: UIPanGestureRecognizer, type: ResizeEventView.ResizeEventViewType)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:587:10: warning: main actor-isolated instance method 'didEnd(gesture:type:)' cannot be used to satisfy nonisolated requirement from protocol 'ResizeEventViewDelegate'; this is an error in the Swift 6 language mode
func didEnd(gesture: UIPanGestureRecognizer, type: ResizeEventView.ResizeEventViewType) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:587:10: note: add 'nonisolated' to 'didEnd(gesture:type:)' to make this instance method not isolated to the actor
func didEnd(gesture: UIPanGestureRecognizer, type: ResizeEventView.ResizeEventViewType) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ResizeEventView.swift:177:10: note: mark the protocol requirement 'didEnd(gesture:type:)' 'async' to allow actor-isolated conformances
func didEnd(gesture: UIPanGestureRecognizer, type: ResizeEventView.ResizeEventViewType)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:591:10: warning: main actor-isolated instance method 'didStartMoveResizeEvent(_:gesture:view:)' cannot be used to satisfy nonisolated requirement from protocol 'ResizeEventViewDelegate'; this is an error in the Swift 6 language mode
func didStartMoveResizeEvent(_ event: Event, gesture: UIPanGestureRecognizer, view: UIView) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:591:10: note: add 'nonisolated' to 'didStartMoveResizeEvent(_:gesture:view:)' to make this instance method not isolated to the actor
func didStartMoveResizeEvent(_ event: Event, gesture: UIPanGestureRecognizer, view: UIView) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ResizeEventView.swift:178:10: note: mark the protocol requirement 'didStartMoveResizeEvent(_:gesture:view:)' 'async' to allow actor-isolated conformances
func didStartMoveResizeEvent(_ event: Event, gesture: UIPanGestureRecognizer, view: UIView)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:599:10: warning: main actor-isolated instance method 'didEndMoveResizeEvent(_:gesture:)' cannot be used to satisfy nonisolated requirement from protocol 'ResizeEventViewDelegate'; this is an error in the Swift 6 language mode
func didEndMoveResizeEvent(_ event: Event, gesture: UIPanGestureRecognizer) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:599:10: note: add 'nonisolated' to 'didEndMoveResizeEvent(_:gesture:)' to make this instance method not isolated to the actor
func didEndMoveResizeEvent(_ event: Event, gesture: UIPanGestureRecognizer) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ResizeEventView.swift:179:10: note: mark the protocol requirement 'didEndMoveResizeEvent(_:gesture:)' 'async' to allow actor-isolated conformances
func didEndMoveResizeEvent(_ event: Event, gesture: UIPanGestureRecognizer)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:595:10: warning: main actor-isolated instance method 'didChangeMoveResizeEvent(_:gesture:)' cannot be used to satisfy nonisolated requirement from protocol 'ResizeEventViewDelegate'; this is an error in the Swift 6 language mode
func didChangeMoveResizeEvent(_ event: Event, gesture: UIPanGestureRecognizer) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:595:10: note: add 'nonisolated' to 'didChangeMoveResizeEvent(_:gesture:)' to make this instance method not isolated to the actor
func didChangeMoveResizeEvent(_ event: Event, gesture: UIPanGestureRecognizer) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/ResizeEventView.swift:180:10: note: mark the protocol requirement 'didChangeMoveResizeEvent(_:gesture:)' 'async' to allow actor-isolated conformances
func didChangeMoveResizeEvent(_ event: Event, gesture: UIPanGestureRecognizer)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:623:10: warning: main actor-isolated instance method 'didStartResizeEvent(_:gesture:view:)' cannot be used to satisfy nonisolated requirement from protocol 'EventDelegate'; this is an error in the Swift 6 language mode
func didStartResizeEvent(_ event: Event, gesture: UIGestureRecognizer, view: UIView) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:623:10: note: add 'nonisolated' to 'didStartResizeEvent(_:gesture:view:)' to make this instance method not isolated to the actor
func didStartResizeEvent(_ event: Event, gesture: UIGestureRecognizer, view: UIView) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:605:25: note: add '@preconcurrency' to the 'EventDelegate' conformance to defer isolation checking to run time
extension TimelineView: EventDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/EventViewGeneral.swift:200:10: note: mark the protocol requirement 'didStartResizeEvent(_:gesture:view:)' 'async' to allow actor-isolated conformances
func didStartResizeEvent(_ event: Event, gesture: UIGestureRecognizer, view: UIView)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:657:10: warning: main actor-isolated instance method 'didEndResizeEvent(_:gesture:)' cannot be used to satisfy nonisolated requirement from protocol 'EventDelegate'; this is an error in the Swift 6 language mode
func didEndResizeEvent(_ event: Event, gesture: UIGestureRecognizer) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:657:10: note: add 'nonisolated' to 'didEndResizeEvent(_:gesture:)' to make this instance method not isolated to the actor
func didEndResizeEvent(_ event: Event, gesture: UIGestureRecognizer) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/EventViewGeneral.swift:201:10: note: mark the protocol requirement 'didEndResizeEvent(_:gesture:)' 'async' to allow actor-isolated conformances
func didEndResizeEvent(_ event: Event, gesture: UIGestureRecognizer)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:661:10: warning: main actor-isolated instance method 'didStartMovingEvent(_:gesture:view:)' cannot be used to satisfy nonisolated requirement from protocol 'EventDelegate'; this is an error in the Swift 6 language mode
func didStartMovingEvent(_ event: Event, gesture: UIGestureRecognizer, view: UIView) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:661:10: note: add 'nonisolated' to 'didStartMovingEvent(_:gesture:view:)' to make this instance method not isolated to the actor
func didStartMovingEvent(_ event: Event, gesture: UIGestureRecognizer, view: UIView) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/EventViewGeneral.swift:202:10: note: mark the protocol requirement 'didStartMovingEvent(_:gesture:view:)' 'async' to allow actor-isolated conformances
func didStartMovingEvent(_ event: Event, gesture: UIGestureRecognizer, view: UIView)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:706:10: warning: main actor-isolated instance method 'didEndMovingEvent(_:gesture:)' cannot be used to satisfy nonisolated requirement from protocol 'EventDelegate'; this is an error in the Swift 6 language mode
func didEndMovingEvent(_ event: Event, gesture: UIGestureRecognizer) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:706:10: note: add 'nonisolated' to 'didEndMovingEvent(_:gesture:)' to make this instance method not isolated to the actor
func didEndMovingEvent(_ event: Event, gesture: UIGestureRecognizer) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/EventViewGeneral.swift:203:10: note: mark the protocol requirement 'didEndMovingEvent(_:gesture:)' 'async' to allow actor-isolated conformances
func didEndMovingEvent(_ event: Event, gesture: UIGestureRecognizer)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:739:10: warning: main actor-isolated instance method 'didChangeMovingEvent(_:gesture:)' cannot be used to satisfy nonisolated requirement from protocol 'EventDelegate'; this is an error in the Swift 6 language mode
func didChangeMovingEvent(_ event: Event, gesture: UIGestureRecognizer) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:739:10: note: add 'nonisolated' to 'didChangeMovingEvent(_:gesture:)' to make this instance method not isolated to the actor
func didChangeMovingEvent(_ event: Event, gesture: UIGestureRecognizer) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/EventViewGeneral.swift:204:10: note: mark the protocol requirement 'didChangeMovingEvent(_:gesture:)' 'async' to allow actor-isolated conformances
func didChangeMovingEvent(_ event: Event, gesture: UIGestureRecognizer)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:618:10: warning: main actor-isolated instance method 'didSelectEvent(_:gesture:)' cannot be used to satisfy nonisolated requirement from protocol 'EventDelegate'; this is an error in the Swift 6 language mode
func didSelectEvent(_ event: Event, gesture: UITapGestureRecognizer) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:618:10: note: add 'nonisolated' to 'didSelectEvent(_:gesture:)' to make this instance method not isolated to the actor
func didSelectEvent(_ event: Event, gesture: UITapGestureRecognizer) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/EventViewGeneral.swift:205:10: note: mark the protocol requirement 'didSelectEvent(_:gesture:)' 'async' to allow actor-isolated conformances
func didSelectEvent(_ event: Event, gesture: UITapGestureRecognizer)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:614:10: warning: main actor-isolated instance method 'deselectEvent' cannot be used to satisfy nonisolated requirement from protocol 'EventDelegate'; this is an error in the Swift 6 language mode
func deselectEvent(_ event: Event) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:614:10: note: add 'nonisolated' to 'deselectEvent' to make this instance method not isolated to the actor
func deselectEvent(_ event: Event) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/EventViewGeneral.swift:206:10: note: mark the protocol requirement 'deselectEvent' 'async' to allow actor-isolated conformances
func deselectEvent(_ event: Event)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:819:9: warning: main actor-isolated property 'style' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
var style: Style {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:817:25: note: add '@preconcurrency' to the 'CalendarSettingProtocol' conformance to defer isolation checking to run time
extension TimelineView: CalendarSettingProtocol {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:319:9: note: requirement 'style' declared here
var style: Style { get set }
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:839:10: warning: main actor-isolated instance method 'reloadFrame' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func reloadFrame(_ frame: CGRect) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:839:10: note: add 'nonisolated' to 'reloadFrame' to make this instance method not isolated to the actor
func reloadFrame(_ frame: CGRect) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:321:10: note: mark the protocol requirement 'reloadFrame' 'async' to allow actor-isolated conformances
func reloadFrame(_ frame: CGRect)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:845:10: warning: main actor-isolated instance method 'updateStyle(_:force:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarSettingProtocol'; this is an error in the Swift 6 language mode
func updateStyle(_ style: Style, force: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:845:10: note: add 'nonisolated' to 'updateStyle(_:force:)' to make this instance method not isolated to the actor
func updateStyle(_ style: Style, force: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/CalendarModel.swift:322:10: note: mark the protocol requirement 'updateStyle(_:force:)' 'async' to allow actor-isolated conformances
func updateStyle(_ style: Style, force: Bool)
^
async
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:879:10: warning: main actor-isolated instance method 'didSelectAllDayEvent(_:frame:)' cannot be used to satisfy nonisolated requirement from protocol 'AllDayEventDelegate'; this is an error in the Swift 6 language mode
func didSelectAllDayEvent(_ event: Event, frame: CGRect?) {
^
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:879:10: note: add 'nonisolated' to 'didSelectAllDayEvent(_:frame:)' to make this instance method not isolated to the actor
func didSelectAllDayEvent(_ event: Event, frame: CGRect?) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/Timeline+Extension.swift:877:25: note: add '@preconcurrency' to the 'AllDayEventDelegate' conformance to defer isolation checking to run time
extension TimelineView: AllDayEventDelegate {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/KVKCalendar/AllDayEventModel.swift:29:10: note: mark the protocol requirement 'didSelectAllDayEvent(_:frame:)' 'async' to allow actor-isolated conformances
func didSelectAllDayEvent(_ event: Event, frame: CGRect?)
^
async
SwiftDriverJobDiscovery normal arm64 Emitting module for KVKCalendar (in target 'KVKCalendar' from project 'KVKCalendar')
SwiftDriver\ Compilation\ Requirements KVKCalendar normal arm64 com.apple.xcode.tools.swift.compiler (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name KVKCalendar -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling TimelineContainerVC.swift, TimelineEventLayout.swift, TimelineLabel.swift, TimelineModel.swift, TimelinePageView.swift (in target 'KVKCalendar' from project 'KVKCalendar')
SwiftDriverJobDiscovery normal arm64 Compiling YearCell.swift, YearData.swift, YearHeaderView.swift, YearRange.swift, YearView.swift (in target 'KVKCalendar' from project 'KVKCalendar')
SwiftDriverJobDiscovery normal arm64 Compiling ListViewCell.swift, ListViewData.swift, ListViewHeader.swift, MonthCell.swift, MonthData.swift, MonthHeaderView.swift (in target 'KVKCalendar' from project 'KVKCalendar')
SwiftDriverJobDiscovery normal arm64 Compiling CurrentLineView.swift, Date+Extension.swift, DayCell.swift, DayData.swift, DayPadCell.swift, DayPhoneCell.swift (in target 'KVKCalendar' from project 'KVKCalendar')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/KVKCalendar-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar-Swift.h (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/KVKCalendar-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling TimelineView.swift, VerticalLineView.swift, WeekData.swift, WeekHeaderView.swift, WeekView.swift (in target 'KVKCalendar' from project 'KVKCalendar')
SwiftDriverJobDiscovery normal arm64 Compiling DayView.swift, DefaultTimelineEventLayout.swift, DividerView.swift, EventView.swift, EventViewGeneral.swift, EventViewList.swift (in target 'KVKCalendar' from project 'KVKCalendar')
SwiftDriverJobDiscovery normal arm64 Compiling MonthView.swift, ResizeEventView.swift, ScrollableWeekHeaderTitleView.swift, ScrollableWeekView.swift, ShadowDayView.swift, SkeletonView.swift (in target 'KVKCalendar' from project 'KVKCalendar')
SwiftDriverJobDiscovery normal arm64 Compiling AllDayEventModel.swift, AllDayEventView.swift, AllDayView.swift, Calendar+Extension.swift, CalendarData.swift, CalendarModel.swift (in target 'KVKCalendar' from project 'KVKCalendar')
SwiftDriverJobDiscovery normal arm64 Compiling KVKCalendarView+Extension.swift, KVKCalendarView.swift, KVKCollectionViewCell.swift, KVKTableViewCell.swift, KVKTableViewHeaderFooterView.swift, ListView.swift (in target 'KVKCalendar' from project 'KVKCalendar')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/KVKCalendar.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar.swiftdoc (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/KVKCalendar.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/KVKCalendar.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar.abi.json (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/KVKCalendar.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/KVKCalendar.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar.swiftmodule (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/KVKCalendar.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/KVKCalendar.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar.swiftsourceinfo (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/KVKCalendar.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling StubEventView.swift, StubStackView.swift, Style.swift, SwiftUI+Extensions.swift, Timeline+Extension.swift (in target 'KVKCalendar' from project 'KVKCalendar')
SwiftDriver\ Compilation KVKCalendar normal arm64 com.apple.xcode.tools.swift.compiler (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name KVKCalendar -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/KVKCalendar.o normal (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/KVKCalendar.o
ExtractAppIntentsMetadata (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name KVKCalendar --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier spi-builder-workspace.KVKCalendar --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/KVKCalendar.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/KVKCalendar.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/KVKCalendar.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/KVKCalendar.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/KVKCalendar.build/Debug-iphoneos/KVKCalendar.build/Objects-normal/arm64/KVKCalendar.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-29 14:18:57.217 appintentsmetadataprocessor[724:4163] Starting appintentsmetadataprocessor export
2025-04-29 14:18:57.255 appintentsmetadataprocessor[724:4163] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/KVKCalendar.o (in target 'KVKCalendar' from project 'KVKCalendar')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/KVKCalendar.o
** BUILD SUCCEEDED **
Build complete.
{
"default_localization" : "en",
"dependencies" : [
],
"manifest_display_name" : "KVKCalendar",
"name" : "KVKCalendar",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
}
],
"products" : [
{
"name" : "KVKCalendar",
"targets" : [
"KVKCalendar"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "KVKCalendarTests",
"module_type" : "SwiftTarget",
"name" : "KVKCalendarTests",
"path" : "Tests/KVKCalendarTests",
"sources" : [
"KVKCalendarTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"KVKCalendar"
],
"type" : "test"
},
{
"c99name" : "KVKCalendar",
"module_type" : "SwiftTarget",
"name" : "KVKCalendar",
"path" : "Sources",
"product_memberships" : [
"KVKCalendar"
],
"sources" : [
"KVKCalendar/AllDayEventModel.swift",
"KVKCalendar/AllDayEventView.swift",
"KVKCalendar/AllDayView.swift",
"KVKCalendar/Calendar+Extension.swift",
"KVKCalendar/CalendarData.swift",
"KVKCalendar/CalendarModel.swift",
"KVKCalendar/CurrentLineView.swift",
"KVKCalendar/Date+Extension.swift",
"KVKCalendar/DayCell.swift",
"KVKCalendar/DayData.swift",
"KVKCalendar/DayPadCell.swift",
"KVKCalendar/DayPhoneCell.swift",
"KVKCalendar/DayView.swift",
"KVKCalendar/DefaultTimelineEventLayout.swift",
"KVKCalendar/DividerView.swift",
"KVKCalendar/EventView.swift",
"KVKCalendar/EventViewGeneral.swift",
"KVKCalendar/EventViewList.swift",
"KVKCalendar/KVKCalendarView+Extension.swift",
"KVKCalendar/KVKCalendarView.swift",
"KVKCalendar/KVKCollectionViewCell.swift",
"KVKCalendar/KVKTableViewCell.swift",
"KVKCalendar/KVKTableViewHeaderFooterView.swift",
"KVKCalendar/ListView.swift",
"KVKCalendar/ListViewCell.swift",
"KVKCalendar/ListViewData.swift",
"KVKCalendar/ListViewHeader.swift",
"KVKCalendar/MonthCell.swift",
"KVKCalendar/MonthData.swift",
"KVKCalendar/MonthHeaderView.swift",
"KVKCalendar/MonthView.swift",
"KVKCalendar/ResizeEventView.swift",
"KVKCalendar/ScrollableWeekHeaderTitleView.swift",
"KVKCalendar/ScrollableWeekView.swift",
"KVKCalendar/ShadowDayView.swift",
"KVKCalendar/SkeletonView.swift",
"KVKCalendar/StubEventView.swift",
"KVKCalendar/StubStackView.swift",
"KVKCalendar/Style.swift",
"KVKCalendar/SwiftUI+Extensions.swift",
"KVKCalendar/Timeline+Extension.swift",
"KVKCalendar/TimelineContainerVC.swift",
"KVKCalendar/TimelineEventLayout.swift",
"KVKCalendar/TimelineLabel.swift",
"KVKCalendar/TimelineModel.swift",
"KVKCalendar/TimelinePageView.swift",
"KVKCalendar/TimelineView.swift",
"KVKCalendar/VerticalLineView.swift",
"KVKCalendar/WeekData.swift",
"KVKCalendar/WeekHeaderView.swift",
"KVKCalendar/WeekView.swift",
"KVKCalendar/YearCell.swift",
"KVKCalendar/YearData.swift",
"KVKCalendar/YearHeaderView.swift",
"KVKCalendar/YearRange.swift",
"KVKCalendar/YearView.swift"
],
"type" : "library"
}
],
"tools_version" : "5.3"
}
Done.