The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build LineSDK, reference master (bcfd5d), with Swift 6.1 for visionOS using Xcode 16.3 on 30 Apr 2025 05:26:44 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme LineSDK-Package -destination generic/platform=xrOS

Build Log

    func correspondingSelectedPanelViewController(
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSelecting/ShareTargetSelectingViewController.swift:27:10: note: mark the protocol requirement 'correspondingSelectedPanelViewController(for:)' 'async' to allow actor-isolated conformances
    func correspondingSelectedPanelViewController(
         ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSelecting/ShareRootViewController.swift:273:10: warning: main actor-isolated instance method 'pageViewController(for:)' cannot be used to satisfy nonisolated requirement from protocol 'ShareTargetSelectingViewControllerDelegate'; this is an error in the Swift 6 language mode
    func pageViewController(
         ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSelecting/ShareRootViewController.swift:273:10: note: add 'nonisolated' to 'pageViewController(for:)' to make this instance method not isolated to the actor
    func pageViewController(
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSelecting/ShareTargetSelectingViewController.swift:31:10: note: mark the protocol requirement 'pageViewController(for:)' 'async' to allow actor-isolated conformances
    func pageViewController(
         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h:27:61: warning: main actor-isolated property 'tableView' cannot be used to satisfy nonisolated requirement from protocol 'ShareTargetTableViewStyling'; this is an error in the Swift 6 language mode
@property (nonatomic, strong, null_resettable) UITableView *tableView;
                                                            ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSelecting/ShareTargetSelectingViewController.swift:36:72: note: add '@preconcurrency' to the 'ShareTargetTableViewStyling' conformance to defer isolation checking to run time
final class ShareTargetSelectingViewController: UITableViewController, ShareTargetTableViewStyling {
                                                                       ^
                                                                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSelecting/ShareTargetTableViewStyling.swift:31:9: note: requirement 'tableView' declared here
    var tableView: UITableView! { get }
        ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginConfiguration.swift:26:16: warning: static property '_shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var _shared: LoginConfiguration?
               ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginConfiguration.swift:26:16: note: convert '_shared' to a 'let' constant to make 'Sendable' shared state immutable
    static var _shared: LoginConfiguration?
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginConfiguration.swift:26:16: note: add '@MainActor' to make static property '_shared' part of global actor 'MainActor'
    static var _shared: LoginConfiguration?
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginConfiguration.swift:26:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var _shared: LoginConfiguration?
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManager.swift:32:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'LoginManager' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let shared = LoginManager()
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManager.swift:26:14: note: class 'LoginManager' does not conform to the 'Sendable' protocol
public class LoginManager {
             ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManager.swift:32:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    public static let shared = LoginManager()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManager.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let shared = LoginManager()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerOptions.swift:44:23: warning: static property 'onlyWebLogin' is not concurrency-safe because non-'Sendable' type 'LoginManagerOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let onlyWebLogin = LoginManagerOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerOptions.swift:28:15: note: consider making struct 'LoginManagerOptions' conform to the 'Sendable' protocol
public struct LoginManagerOptions: OptionSet {
              ^
                                            , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerOptions.swift:44:23: note: add '@MainActor' to make static property 'onlyWebLogin' part of global actor 'MainActor'
    public static let onlyWebLogin = LoginManagerOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerOptions.swift:44:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let onlyWebLogin = LoginManagerOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerOptions.swift:51:23: warning: static property 'botPromptNormal' is not concurrency-safe because non-'Sendable' type 'LoginManagerOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let botPromptNormal = LoginManagerOptions(rawValue: 1 << 1)
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerOptions.swift:28:15: note: consider making struct 'LoginManagerOptions' conform to the 'Sendable' protocol
public struct LoginManagerOptions: OptionSet {
              ^
                                            , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerOptions.swift:51:23: note: add '@MainActor' to make static property 'botPromptNormal' part of global actor 'MainActor'
    public static let botPromptNormal = LoginManagerOptions(rawValue: 1 << 1)
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerOptions.swift:51:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let botPromptNormal = LoginManagerOptions(rawValue: 1 << 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerOptions.swift:59:23: warning: static property 'botPromptAggressive' is not concurrency-safe because non-'Sendable' type 'LoginManagerOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let botPromptAggressive = LoginManagerOptions(rawValue: 1 << 2)
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerOptions.swift:28:15: note: consider making struct 'LoginManagerOptions' conform to the 'Sendable' protocol
public struct LoginManagerOptions: OptionSet {
              ^
                                            , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerOptions.swift:59:23: note: add '@MainActor' to make static property 'botPromptAggressive' part of global actor 'MainActor'
    public static let botPromptAggressive = LoginManagerOptions(rawValue: 1 << 2)
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerOptions.swift:59:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let botPromptAggressive = LoginManagerOptions(rawValue: 1 << 2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:117:27: warning: static property 'arabic' is not concurrency-safe because non-'Sendable' type 'LoginManager.WebPageLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let arabic = WebPageLanguage(rawValue: "ar")
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:105:19: note: consider making struct 'WebPageLanguage' conform to the 'Sendable' protocol
    public struct WebPageLanguage {
                  ^
                                  : Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:117:27: note: add '@MainActor' to make static property 'arabic' part of global actor 'MainActor'
        public static let arabic = WebPageLanguage(rawValue: "ar")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:117:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let arabic = WebPageLanguage(rawValue: "ar")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:119:27: warning: static property 'german' is not concurrency-safe because non-'Sendable' type 'LoginManager.WebPageLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let german = WebPageLanguage(rawValue: "de")
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:105:19: note: consider making struct 'WebPageLanguage' conform to the 'Sendable' protocol
    public struct WebPageLanguage {
                  ^
                                  : Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:119:27: note: add '@MainActor' to make static property 'german' part of global actor 'MainActor'
        public static let german = WebPageLanguage(rawValue: "de")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:119:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let german = WebPageLanguage(rawValue: "de")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:121:27: warning: static property 'english' is not concurrency-safe because non-'Sendable' type 'LoginManager.WebPageLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let english = WebPageLanguage(rawValue: "en")
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:105:19: note: consider making struct 'WebPageLanguage' conform to the 'Sendable' protocol
    public struct WebPageLanguage {
                  ^
                                  : Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:121:27: note: add '@MainActor' to make static property 'english' part of global actor 'MainActor'
        public static let english = WebPageLanguage(rawValue: "en")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:121:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let english = WebPageLanguage(rawValue: "en")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:123:27: warning: static property 'spanish' is not concurrency-safe because non-'Sendable' type 'LoginManager.WebPageLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let spanish = WebPageLanguage(rawValue: "es")
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:105:19: note: consider making struct 'WebPageLanguage' conform to the 'Sendable' protocol
    public struct WebPageLanguage {
                  ^
                                  : Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:123:27: note: add '@MainActor' to make static property 'spanish' part of global actor 'MainActor'
        public static let spanish = WebPageLanguage(rawValue: "es")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:123:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let spanish = WebPageLanguage(rawValue: "es")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:125:27: warning: static property 'french' is not concurrency-safe because non-'Sendable' type 'LoginManager.WebPageLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let french = WebPageLanguage(rawValue: "fr")
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:105:19: note: consider making struct 'WebPageLanguage' conform to the 'Sendable' protocol
    public struct WebPageLanguage {
                  ^
                                  : Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:125:27: note: add '@MainActor' to make static property 'french' part of global actor 'MainActor'
        public static let french = WebPageLanguage(rawValue: "fr")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:125:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let french = WebPageLanguage(rawValue: "fr")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:127:27: warning: static property 'indonesian' is not concurrency-safe because non-'Sendable' type 'LoginManager.WebPageLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let indonesian = WebPageLanguage(rawValue: "id")
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:105:19: note: consider making struct 'WebPageLanguage' conform to the 'Sendable' protocol
    public struct WebPageLanguage {
                  ^
                                  : Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:127:27: note: add '@MainActor' to make static property 'indonesian' part of global actor 'MainActor'
        public static let indonesian = WebPageLanguage(rawValue: "id")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:127:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let indonesian = WebPageLanguage(rawValue: "id")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:129:27: warning: static property 'italian' is not concurrency-safe because non-'Sendable' type 'LoginManager.WebPageLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let italian = WebPageLanguage(rawValue: "it")
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:105:19: note: consider making struct 'WebPageLanguage' conform to the 'Sendable' protocol
    public struct WebPageLanguage {
                  ^
                                  : Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:129:27: note: add '@MainActor' to make static property 'italian' part of global actor 'MainActor'
        public static let italian = WebPageLanguage(rawValue: "it")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:129:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let italian = WebPageLanguage(rawValue: "it")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:131:27: warning: static property 'japanese' is not concurrency-safe because non-'Sendable' type 'LoginManager.WebPageLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let japanese = WebPageLanguage(rawValue: "ja")
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:105:19: note: consider making struct 'WebPageLanguage' conform to the 'Sendable' protocol
    public struct WebPageLanguage {
                  ^
                                  : Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:131:27: note: add '@MainActor' to make static property 'japanese' part of global actor 'MainActor'
        public static let japanese = WebPageLanguage(rawValue: "ja")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:131:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let japanese = WebPageLanguage(rawValue: "ja")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:133:27: warning: static property 'korean' is not concurrency-safe because non-'Sendable' type 'LoginManager.WebPageLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let korean = WebPageLanguage(rawValue: "ko")
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:105:19: note: consider making struct 'WebPageLanguage' conform to the 'Sendable' protocol
    public struct WebPageLanguage {
                  ^
                                  : Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:133:27: note: add '@MainActor' to make static property 'korean' part of global actor 'MainActor'
        public static let korean = WebPageLanguage(rawValue: "ko")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:133:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let korean = WebPageLanguage(rawValue: "ko")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:135:27: warning: static property 'malay' is not concurrency-safe because non-'Sendable' type 'LoginManager.WebPageLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let malay = WebPageLanguage(rawValue: "ms")
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:105:19: note: consider making struct 'WebPageLanguage' conform to the 'Sendable' protocol
    public struct WebPageLanguage {
                  ^
                                  : Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:135:27: note: add '@MainActor' to make static property 'malay' part of global actor 'MainActor'
        public static let malay = WebPageLanguage(rawValue: "ms")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:135:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let malay = WebPageLanguage(rawValue: "ms")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:137:27: warning: static property 'portugueseBrazilian' is not concurrency-safe because non-'Sendable' type 'LoginManager.WebPageLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let portugueseBrazilian = WebPageLanguage(rawValue: "pt-BR")
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:105:19: note: consider making struct 'WebPageLanguage' conform to the 'Sendable' protocol
    public struct WebPageLanguage {
                  ^
                                  : Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:137:27: note: add '@MainActor' to make static property 'portugueseBrazilian' part of global actor 'MainActor'
        public static let portugueseBrazilian = WebPageLanguage(rawValue: "pt-BR")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:137:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let portugueseBrazilian = WebPageLanguage(rawValue: "pt-BR")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:139:27: warning: static property 'portugueseEuropean' is not concurrency-safe because non-'Sendable' type 'LoginManager.WebPageLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let portugueseEuropean = WebPageLanguage(rawValue: "pt-PT")
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:105:19: note: consider making struct 'WebPageLanguage' conform to the 'Sendable' protocol
    public struct WebPageLanguage {
                  ^
                                  : Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:139:27: note: add '@MainActor' to make static property 'portugueseEuropean' part of global actor 'MainActor'
        public static let portugueseEuropean = WebPageLanguage(rawValue: "pt-PT")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:139:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let portugueseEuropean = WebPageLanguage(rawValue: "pt-PT")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:141:27: warning: static property 'russian' is not concurrency-safe because non-'Sendable' type 'LoginManager.WebPageLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let russian = WebPageLanguage(rawValue: "ru")
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:105:19: note: consider making struct 'WebPageLanguage' conform to the 'Sendable' protocol
    public struct WebPageLanguage {
                  ^
                                  : Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:141:27: note: add '@MainActor' to make static property 'russian' part of global actor 'MainActor'
        public static let russian = WebPageLanguage(rawValue: "ru")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:141:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let russian = WebPageLanguage(rawValue: "ru")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:143:27: warning: static property 'thai' is not concurrency-safe because non-'Sendable' type 'LoginManager.WebPageLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let thai = WebPageLanguage(rawValue: "th")
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:105:19: note: consider making struct 'WebPageLanguage' conform to the 'Sendable' protocol
    public struct WebPageLanguage {
                  ^
                                  : Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:143:27: note: add '@MainActor' to make static property 'thai' part of global actor 'MainActor'
        public static let thai = WebPageLanguage(rawValue: "th")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:143:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let thai = WebPageLanguage(rawValue: "th")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:145:27: warning: static property 'turkish' is not concurrency-safe because non-'Sendable' type 'LoginManager.WebPageLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let turkish = WebPageLanguage(rawValue: "tr")
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:105:19: note: consider making struct 'WebPageLanguage' conform to the 'Sendable' protocol
    public struct WebPageLanguage {
                  ^
                                  : Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:145:27: note: add '@MainActor' to make static property 'turkish' part of global actor 'MainActor'
        public static let turkish = WebPageLanguage(rawValue: "tr")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:145:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let turkish = WebPageLanguage(rawValue: "tr")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:147:27: warning: static property 'vietnamese' is not concurrency-safe because non-'Sendable' type 'LoginManager.WebPageLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let vietnamese = WebPageLanguage(rawValue: "vi")
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:105:19: note: consider making struct 'WebPageLanguage' conform to the 'Sendable' protocol
    public struct WebPageLanguage {
                  ^
                                  : Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:147:27: note: add '@MainActor' to make static property 'vietnamese' part of global actor 'MainActor'
        public static let vietnamese = WebPageLanguage(rawValue: "vi")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:147:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let vietnamese = WebPageLanguage(rawValue: "vi")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:149:27: warning: static property 'chineseSimplified' is not concurrency-safe because non-'Sendable' type 'LoginManager.WebPageLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let chineseSimplified = WebPageLanguage(rawValue: "zh-Hans")
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:105:19: note: consider making struct 'WebPageLanguage' conform to the 'Sendable' protocol
    public struct WebPageLanguage {
                  ^
                                  : Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:149:27: note: add '@MainActor' to make static property 'chineseSimplified' part of global actor 'MainActor'
        public static let chineseSimplified = WebPageLanguage(rawValue: "zh-Hans")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:149:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let chineseSimplified = WebPageLanguage(rawValue: "zh-Hans")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:151:27: warning: static property 'chineseTraditional' is not concurrency-safe because non-'Sendable' type 'LoginManager.WebPageLanguage' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let chineseTraditional = WebPageLanguage(rawValue: "zh-Hant")
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:105:19: note: consider making struct 'WebPageLanguage' conform to the 'Sendable' protocol
    public struct WebPageLanguage {
                  ^
                                  : Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:151:27: note: add '@MainActor' to make static property 'chineseTraditional' part of global actor 'MainActor'
        public static let chineseTraditional = WebPageLanguage(rawValue: "zh-Hant")
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift:151:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let chineseTraditional = WebPageLanguage(rawValue: "zh-Hant")
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:36:23: warning: static property 'openID' is not concurrency-safe because non-'Sendable' type 'LoginPermission' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let openID                         = LoginPermission(rawValue: "openid")
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:25:15: note: consider making struct 'LoginPermission' conform to the 'Sendable' protocol
public struct LoginPermission: Hashable {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:36:23: note: add '@MainActor' to make static property 'openID' part of global actor 'MainActor'
    public static let openID                         = LoginPermission(rawValue: "openid")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:36:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let openID                         = LoginPermission(rawValue: "openid")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:40:23: warning: static property 'profile' is not concurrency-safe because non-'Sendable' type 'LoginPermission' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let profile                        = LoginPermission(rawValue: "profile")
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:25:15: note: consider making struct 'LoginPermission' conform to the 'Sendable' protocol
public struct LoginPermission: Hashable {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:40:23: note: add '@MainActor' to make static property 'profile' part of global actor 'MainActor'
    public static let profile                        = LoginPermission(rawValue: "profile")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let profile                        = LoginPermission(rawValue: "profile")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:43:23: warning: static property 'oneTimeShare' is not concurrency-safe because non-'Sendable' type 'LoginPermission' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let oneTimeShare                   = LoginPermission(rawValue: "onetime.share")
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:25:15: note: consider making struct 'LoginPermission' conform to the 'Sendable' protocol
public struct LoginPermission: Hashable {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:43:23: note: add '@MainActor' to make static property 'oneTimeShare' part of global actor 'MainActor'
    public static let oneTimeShare                   = LoginPermission(rawValue: "onetime.share")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let oneTimeShare                   = LoginPermission(rawValue: "onetime.share")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:47:23: warning: static property 'friends' is not concurrency-safe because non-'Sendable' type 'LoginPermission' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let friends                        = LoginPermission(rawValue: "friends")
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:25:15: note: consider making struct 'LoginPermission' conform to the 'Sendable' protocol
public struct LoginPermission: Hashable {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:47:23: note: add '@MainActor' to make static property 'friends' part of global actor 'MainActor'
    public static let friends                        = LoginPermission(rawValue: "friends")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:47:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let friends                        = LoginPermission(rawValue: "friends")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:51:23: warning: static property 'groups' is not concurrency-safe because non-'Sendable' type 'LoginPermission' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let groups                         = LoginPermission(rawValue: "groups")
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:25:15: note: consider making struct 'LoginPermission' conform to the 'Sendable' protocol
public struct LoginPermission: Hashable {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:51:23: note: add '@MainActor' to make static property 'groups' part of global actor 'MainActor'
    public static let groups                         = LoginPermission(rawValue: "groups")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:51:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let groups                         = LoginPermission(rawValue: "groups")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:55:23: warning: static property 'messageWrite' is not concurrency-safe because non-'Sendable' type 'LoginPermission' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let messageWrite                   = LoginPermission(rawValue: "message.write")
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:25:15: note: consider making struct 'LoginPermission' conform to the 'Sendable' protocol
public struct LoginPermission: Hashable {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:55:23: note: add '@MainActor' to make static property 'messageWrite' part of global actor 'MainActor'
    public static let messageWrite                   = LoginPermission(rawValue: "message.write")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:55:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let messageWrite                   = LoginPermission(rawValue: "message.write")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:59:23: warning: static property 'openChatTermStatus' is not concurrency-safe because non-'Sendable' type 'LoginPermission' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let openChatTermStatus             = LoginPermission(rawValue: "openchat.term.agreement.status")
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:25:15: note: consider making struct 'LoginPermission' conform to the 'Sendable' protocol
public struct LoginPermission: Hashable {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:59:23: note: add '@MainActor' to make static property 'openChatTermStatus' part of global actor 'MainActor'
    public static let openChatTermStatus             = LoginPermission(rawValue: "openchat.term.agreement.status")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:59:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let openChatTermStatus             = LoginPermission(rawValue: "openchat.term.agreement.status")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:62:23: warning: static property 'openChatRoomCreateAndJoin' is not concurrency-safe because non-'Sendable' type 'LoginPermission' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let openChatRoomCreateAndJoin      = LoginPermission(rawValue: "openchat.create.join")
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:25:15: note: consider making struct 'LoginPermission' conform to the 'Sendable' protocol
public struct LoginPermission: Hashable {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:62:23: note: add '@MainActor' to make static property 'openChatRoomCreateAndJoin' part of global actor 'MainActor'
    public static let openChatRoomCreateAndJoin      = LoginPermission(rawValue: "openchat.create.join")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:62:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let openChatRoomCreateAndJoin      = LoginPermission(rawValue: "openchat.create.join")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:65:23: warning: static property 'openChatInfo' is not concurrency-safe because non-'Sendable' type 'LoginPermission' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let openChatInfo                   = LoginPermission(rawValue: "openchat.info")
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:25:15: note: consider making struct 'LoginPermission' conform to the 'Sendable' protocol
public struct LoginPermission: Hashable {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:65:23: note: add '@MainActor' to make static property 'openChatInfo' part of global actor 'MainActor'
    public static let openChatInfo                   = LoginPermission(rawValue: "openchat.info")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:65:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let openChatInfo                   = LoginPermission(rawValue: "openchat.info")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:74:23: warning: static property 'email' is not concurrency-safe because non-'Sendable' type 'LoginPermission' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let email                          = LoginPermission(rawValue: "email")
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:25:15: note: consider making struct 'LoginPermission' conform to the 'Sendable' protocol
public struct LoginPermission: Hashable {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:74:23: note: add '@MainActor' to make static property 'email' part of global actor 'MainActor'
    public static let email                          = LoginPermission(rawValue: "email")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:74:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let email                          = LoginPermission(rawValue: "email")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:83:23: warning: static property 'phone' is not concurrency-safe because non-'Sendable' type 'LoginPermission' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let phone                          = LoginPermission(rawValue: "phone")
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:25:15: note: consider making struct 'LoginPermission' conform to the 'Sendable' protocol
public struct LoginPermission: Hashable {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:83:23: note: add '@MainActor' to make static property 'phone' part of global actor 'MainActor'
    public static let phone                          = LoginPermission(rawValue: "phone")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:83:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let phone                          = LoginPermission(rawValue: "phone")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:87:23: warning: static property 'gender' is not concurrency-safe because non-'Sendable' type 'LoginPermission' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let gender                         = LoginPermission(rawValue: "gender")
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:25:15: note: consider making struct 'LoginPermission' conform to the 'Sendable' protocol
public struct LoginPermission: Hashable {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:87:23: note: add '@MainActor' to make static property 'gender' part of global actor 'MainActor'
    public static let gender                         = LoginPermission(rawValue: "gender")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:87:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let gender                         = LoginPermission(rawValue: "gender")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:91:23: warning: static property 'birthdate' is not concurrency-safe because non-'Sendable' type 'LoginPermission' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let birthdate                      = LoginPermission(rawValue: "birthdate")
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:25:15: note: consider making struct 'LoginPermission' conform to the 'Sendable' protocol
public struct LoginPermission: Hashable {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:91:23: note: add '@MainActor' to make static property 'birthdate' part of global actor 'MainActor'
    public static let birthdate                      = LoginPermission(rawValue: "birthdate")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:91:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let birthdate                      = LoginPermission(rawValue: "birthdate")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:95:23: warning: static property 'address' is not concurrency-safe because non-'Sendable' type 'LoginPermission' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let address                        = LoginPermission(rawValue: "address")
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:25:15: note: consider making struct 'LoginPermission' conform to the 'Sendable' protocol
public struct LoginPermission: Hashable {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:95:23: note: add '@MainActor' to make static property 'address' part of global actor 'MainActor'
    public static let address                        = LoginPermission(rawValue: "address")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:95:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let address                        = LoginPermission(rawValue: "address")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:99:23: warning: static property 'realName' is not concurrency-safe because non-'Sendable' type 'LoginPermission' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let realName                       = LoginPermission(rawValue: "real_name")
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:25:15: note: consider making struct 'LoginPermission' conform to the 'Sendable' protocol
public struct LoginPermission: Hashable {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:99:23: note: add '@MainActor' to make static property 'realName' part of global actor 'MainActor'
    public static let realName                       = LoginPermission(rawValue: "real_name")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:99:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let realName                       = LoginPermission(rawValue: "real_name")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:105:23: warning: static property 'openChatPlugManagement' is not concurrency-safe because non-'Sendable' type 'LoginPermission' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let openChatPlugManagement          = LoginPermission(rawValue: "openchatplug.managament")
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:25:15: note: consider making struct 'LoginPermission' conform to the 'Sendable' protocol
public struct LoginPermission: Hashable {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:105:23: note: add '@MainActor' to make static property 'openChatPlugManagement' part of global actor 'MainActor'
    public static let openChatPlugManagement          = LoginPermission(rawValue: "openchatplug.managament")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:105:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let openChatPlugManagement          = LoginPermission(rawValue: "openchatplug.managament")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:106:23: warning: static property 'openChatPlugInfo' is not concurrency-safe because non-'Sendable' type 'LoginPermission' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let openChatPlugInfo                = LoginPermission(rawValue: "openchatplug.info")
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:25:15: note: consider making struct 'LoginPermission' conform to the 'Sendable' protocol
public struct LoginPermission: Hashable {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:106:23: note: add '@MainActor' to make static property 'openChatPlugInfo' part of global actor 'MainActor'
    public static let openChatPlugInfo                = LoginPermission(rawValue: "openchatplug.info")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:106:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let openChatPlugInfo                = LoginPermission(rawValue: "openchatplug.info")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:107:23: warning: static property 'openChatPlugProfile' is not concurrency-safe because non-'Sendable' type 'LoginPermission' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let openChatPlugProfile             = LoginPermission(rawValue: "openchatplug.profile")
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:25:15: note: consider making struct 'LoginPermission' conform to the 'Sendable' protocol
public struct LoginPermission: Hashable {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:107:23: note: add '@MainActor' to make static property 'openChatPlugProfile' part of global actor 'MainActor'
    public static let openChatPlugProfile             = LoginPermission(rawValue: "openchatplug.profile")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:107:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let openChatPlugProfile             = LoginPermission(rawValue: "openchatplug.profile")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:108:23: warning: static property 'openChatPlugSendMessage' is not concurrency-safe because non-'Sendable' type 'LoginPermission' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let openChatPlugSendMessage         = LoginPermission(rawValue: "openchatplug.send.message")
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:25:15: note: consider making struct 'LoginPermission' conform to the 'Sendable' protocol
public struct LoginPermission: Hashable {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:108:23: note: add '@MainActor' to make static property 'openChatPlugSendMessage' part of global actor 'MainActor'
    public static let openChatPlugSendMessage         = LoginPermission(rawValue: "openchatplug.send.message")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:108:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let openChatPlugSendMessage         = LoginPermission(rawValue: "openchatplug.send.message")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:109:23: warning: static property 'openChatPlugReceiveMessageEvent' is not concurrency-safe because non-'Sendable' type 'LoginPermission' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let openChatPlugReceiveMessageEvent = LoginPermission(rawValue: "openchatplug.receive.message.and.event")
                      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:25:15: note: consider making struct 'LoginPermission' conform to the 'Sendable' protocol
public struct LoginPermission: Hashable {
              ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:109:23: note: add '@MainActor' to make static property 'openChatPlugReceiveMessageEvent' part of global actor 'MainActor'
    public static let openChatPlugReceiveMessageEvent = LoginPermission(rawValue: "openchatplug.receive.message.and.event")
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift:109:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let openChatPlugReceiveMessageEvent = LoginPermission(rawValue: "openchatplug.receive.message.and.event")
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginProcess.swift:451:25: error: 'SFSafariViewControllerDelegate' is unavailable in visionOS
extension WebLoginFlow: SFSafariViewControllerDelegate {
                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/SafariServices.framework/Headers/SFSafariViewController.h:130:11: note: 'SFSafariViewControllerDelegate' has been explicitly marked unavailable here
@protocol SFSafariViewControllerDelegate <NSObject>
          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Model/AccessTokenStore.swift:110:16: warning: static property '_shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var _shared: AccessTokenStore?
               ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Model/AccessTokenStore.swift:110:16: note: convert '_shared' to a 'let' constant to make 'Sendable' shared state immutable
    static var _shared: AccessTokenStore?
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Model/AccessTokenStore.swift:110:16: note: add '@MainActor' to make static property '_shared' part of global actor 'MainActor'
    static var _shared: AccessTokenStore?
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Model/AccessTokenStore.swift:110:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var _shared: AccessTokenStore?
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexButtonComponent.swift:45:27: warning: static property 'defaultCase' is not concurrency-safe because non-'Sendable' type 'FlexButtonComponent.Style' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let defaultCase: FlexButtonComponent.Style = .link
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexButtonComponent.swift:32:17: note: consider making enum 'Style' conform to the 'Sendable' protocol
    public enum Style: String, DefaultEnumCodable {
                ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexButtonComponent.swift:45:27: note: add '@MainActor' to make static property 'defaultCase' part of global actor 'MainActor'
        public static let defaultCase: FlexButtonComponent.Style = .link
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexButtonComponent.swift:45:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let defaultCase: FlexButtonComponent.Style = .link
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:58:27: warning: static property 'defaultCase' is not concurrency-safe because non-'Sendable' type 'FlexMessageComponent.Layout' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let defaultCase: Layout = .vertical
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:43:17: note: consider making enum 'Layout' conform to the 'Sendable' protocol
    public enum Layout: String, DefaultEnumCodable {
                ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:58:27: note: add '@MainActor' to make static property 'defaultCase' part of global actor 'MainActor'
        public static let defaultCase: Layout = .vertical
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:58:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let defaultCase: Layout = .vertical
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:77:27: warning: static property 'defaultCase' is not concurrency-safe because non-'Sendable' type 'FlexMessageComponent.Margin' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let defaultCase: Margin = .none
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:73:17: note: consider making enum 'Margin' conform to the 'Sendable' protocol
    public enum Margin: String, DefaultEnumCodable {
                ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:77:27: note: add '@MainActor' to make static property 'defaultCase' part of global actor 'MainActor'
        public static let defaultCase: Margin = .none
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:77:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let defaultCase: Margin = .none
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:97:27: warning: static property 'defaultCase' is not concurrency-safe because non-'Sendable' type 'FlexMessageComponent.Size' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let defaultCase: Size = .md
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:93:17: note: consider making enum 'Size' conform to the 'Sendable' protocol
    public enum Size: String, DefaultEnumCodable {
                ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:97:27: note: add '@MainActor' to make static property 'defaultCase' part of global actor 'MainActor'
        public static let defaultCase: Size = .md
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:97:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let defaultCase: Size = .md
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:109:27: warning: static property 'defaultCase' is not concurrency-safe because non-'Sendable' type 'FlexMessageComponent.Alignment' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let defaultCase: Alignment = .start
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:105:17: note: consider making enum 'Alignment' conform to the 'Sendable' protocol
    public enum Alignment: String, DefaultEnumCodable {
                ^
                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:109:27: note: add '@MainActor' to make static property 'defaultCase' part of global actor 'MainActor'
        public static let defaultCase: Alignment = .start
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:109:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let defaultCase: Alignment = .start
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:121:27: warning: static property 'defaultCase' is not concurrency-safe because non-'Sendable' type 'FlexMessageComponent.Gravity' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let defaultCase: Gravity = .top
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:117:17: note: consider making enum 'Gravity' conform to the 'Sendable' protocol
    public enum Gravity: String, DefaultEnumCodable {
                ^
                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:121:27: note: add '@MainActor' to make static property 'defaultCase' part of global actor 'MainActor'
        public static let defaultCase: Gravity = .top
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:121:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let defaultCase: Gravity = .top
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:132:27: warning: static property 'defaultCase' is not concurrency-safe because non-'Sendable' type 'FlexMessageComponent.Weight' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let defaultCase: Weight = .regular
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:128:17: note: consider making enum 'Weight' conform to the 'Sendable' protocol
    public enum Weight: String, DefaultEnumCodable {
                ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:132:27: note: add '@MainActor' to make static property 'defaultCase' part of global actor 'MainActor'
        public static let defaultCase: Weight = .regular
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:132:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let defaultCase: Weight = .regular
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:143:27: warning: static property 'defaultCase' is not concurrency-safe because non-'Sendable' type 'FlexMessageComponent.Height' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let defaultCase: Height = .md
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:139:17: note: consider making enum 'Height' conform to the 'Sendable' protocol
    public enum Height: String, DefaultEnumCodable {
                ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:143:27: note: add '@MainActor' to make static property 'defaultCase' part of global actor 'MainActor'
        public static let defaultCase: Height = .md
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:143:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let defaultCase: Height = .md
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:175:27: warning: static property 'defaultCase' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var defaultCase: AspectRatio = .ratio_1x1
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:175:27: note: convert 'defaultCase' to a 'let' constant to make 'Sendable' shared state immutable
        public static var defaultCase: AspectRatio = .ratio_1x1
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:175:27: note: add '@MainActor' to make static property 'defaultCase' part of global actor 'MainActor'
        public static var defaultCase: AspectRatio = .ratio_1x1
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:175:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var defaultCase: AspectRatio = .ratio_1x1
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:187:27: warning: static property 'defaultCase' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var defaultCase: AspectMode = .fit
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:187:27: note: convert 'defaultCase' to a 'let' constant to make 'Sendable' shared state immutable
        public static var defaultCase: AspectMode = .fit
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:187:27: note: add '@MainActor' to make static property 'defaultCase' part of global actor 'MainActor'
        public static var defaultCase: AspectMode = .fit
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift:187:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var defaultCase: AspectMode = .fit
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Container/FlexBubbleContainer.swift:61:27: warning: static property 'defaultCase' is not concurrency-safe because non-'Sendable' type 'FlexBubbleContainer.Direction' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let defaultCase: Direction = .leftToRight
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Container/FlexBubbleContainer.swift:52:17: note: consider making enum 'Direction' conform to the 'Sendable' protocol
    public enum Direction: String, DefaultEnumCodable {
                ^
                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Container/FlexBubbleContainer.swift:61:27: note: add '@MainActor' to make static property 'defaultCase' part of global actor 'MainActor'
        public static let defaultCase: Direction = .leftToRight
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Container/FlexBubbleContainer.swift:61:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let defaultCase: Direction = .leftToRight
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Template/Payloads/TemplateMessageProperties.swift:42:27: warning: static property 'defaultCase' is not concurrency-safe because non-'Sendable' type 'TemplateMessagePayload.ImageAspectRatio' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let defaultCase: ImageAspectRatio = .rectangle
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Template/Payloads/TemplateMessageProperties.swift:33:17: note: consider making enum 'ImageAspectRatio' conform to the 'Sendable' protocol
    public enum ImageAspectRatio: String, DefaultEnumCodable {
                ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Template/Payloads/TemplateMessageProperties.swift:42:27: note: add '@MainActor' to make static property 'defaultCase' part of global actor 'MainActor'
        public static let defaultCase: ImageAspectRatio = .rectangle
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Template/Payloads/TemplateMessageProperties.swift:42:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let defaultCase: ImageAspectRatio = .rectangle
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Template/Payloads/TemplateMessageProperties.swift:55:27: warning: static property 'defaultCase' is not concurrency-safe because non-'Sendable' type 'TemplateMessagePayload.ImageContentMode' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let defaultCase: ImageContentMode = .aspectFill
                          ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Template/Payloads/TemplateMessageProperties.swift:49:17: note: consider making enum 'ImageContentMode' conform to the 'Sendable' protocol
    public enum ImageContentMode: String, DefaultEnumCodable {
                ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Template/Payloads/TemplateMessageProperties.swift:55:27: note: add '@MainActor' to make static property 'defaultCase' part of global actor 'MainActor'
        public static let defaultCase: ImageContentMode = .aspectFill
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Template/Payloads/TemplateMessageProperties.swift:55:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let defaultCase: ImageContentMode = .aspectFill
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/ResponsePipeline.swift:263:5: warning: let 'emptyDataTransformer' is not concurrency-safe because non-'Sendable' type 'ResponsePipeline' may have shared mutable state; this is an error in the Swift 6 language mode
let emptyDataTransformer: ResponsePipeline = {
    ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/ResponsePipeline.swift:101:13: note: consider making enum 'ResponsePipeline' conform to the 'Sendable' protocol
public enum ResponsePipeline {
            ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/ResponsePipeline.swift:263:5: note: add '@MainActor' to make let 'emptyDataTransformer' part of global actor 'MainActor'
let emptyDataTransformer: ResponsePipeline = {
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/ResponsePipeline.swift:263:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let emptyDataTransformer: ResponsePipeline = {
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/Session.swift:50:16: warning: static property '_shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var _shared: Session?
               ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/Session.swift:50:16: note: convert '_shared' to a 'let' constant to make 'Sendable' shared state immutable
    static var _shared: Session?
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/Session.swift:50:16: note: add '@MainActor' to make static property '_shared' part of global actor 'MainActor'
    static var _shared: Session?
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/Session.swift:50:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var _shared: Session?
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/Session.swift:287:7: warning: non-final class 'SessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
class SessionDelegate: NSObject {
      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/Session.swift:288:17: warning: stored property 'tasks' of 'Sendable'-conforming class 'SessionDelegate' is mutable; this is an error in the Swift 6 language mode
    private var tasks: [Int: SessionTask] = [:]
                ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Images/ImageManager.swift:39:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ImageManager' may have shared mutable state; this is an error in the Swift 6 language mode
    static let shared = ImageManager()
               ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Images/ImageManager.swift:26:7: note: class 'ImageManager' does not conform to the 'Sendable' protocol
class ImageManager {
      ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Images/ImageManager.swift:39:16: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    static let shared = ImageManager()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Images/ImageManager.swift:39:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let shared = ImageManager()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/LoadingIndicator.swift:26:16: warning: static property 'indicators' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var indicators = NSMapTable<UIView, LoadingIndicator>.weakToStrongObjects()
               ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/LoadingIndicator.swift:26:16: note: convert 'indicators' to a 'let' constant to make 'Sendable' shared state immutable
    static var indicators = NSMapTable<UIView, LoadingIndicator>.weakToStrongObjects()
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/LoadingIndicator.swift:26:16: note: add '@MainActor' to make static property 'indicators' part of global actor 'MainActor'
    static var indicators = NSMapTable<UIView, LoadingIndicator>.weakToStrongObjects()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/LoadingIndicator.swift:26:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var indicators = NSMapTable<UIView, LoadingIndicator>.weakToStrongObjects()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/UserDefaultsValue.swift:26:24: warning: static property 'defaults' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var defaults = UserDefaults.standard
                       ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/UserDefaultsValue.swift:26:24: note: convert 'defaults' to a 'let' constant to make 'Sendable' shared state immutable
    private static var defaults = UserDefaults.standard
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/UserDefaultsValue.swift:26:24: note: add '@MainActor' to make static property 'defaults' part of global actor 'MainActor'
    private static var defaults = UserDefaults.standard
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/UserDefaultsValue.swift:26:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var defaults = UserDefaults.standard
                       ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ MessageAction.swift,\ AudioMessage.swift,\ FlexBoxComponent.swift,\ FlexButtonComponent.swift,\ FlexFillerComponent.swift,\ FlexIconComponent.swift,\ FlexImageComponent.swift,\ FlexMessageComponent.swift,\ FlexMessageProperties.swift,\ FlexSeparatorComponent.swift,\ FlexSpacerComponent.swift,\ FlexTextComponent.swift,\ FlexBubbleContainer.swift,\ FlexCarouselContainer.swift,\ FlexMessageContainer.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Actions/MessageAction.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/AudioMessage.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexBoxComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexButtonComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexFillerComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexIconComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexImageComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexSeparatorComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexSpacerComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexTextComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Container/FlexBubbleContainer.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Container/FlexCarouselContainer.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Container/FlexMessageContainer.swift (in target 'LineSDK' from project 'LineSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Actions/MessageAction.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/AudioMessage.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexBoxComponent.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexButtonComponent.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexFillerComponent.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexIconComponent.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexImageComponent.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageComponent.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexSeparatorComponent.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexSpacerComponent.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexTextComponent.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Container/FlexBubbleContainer.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Container/FlexCarouselContainer.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Container/FlexMessageContainer.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ VideoMessage.swift,\ PostMessageSendingTokenIssueRequest.swift,\ PostMultisendMessagesRequest.swift,\ PostMultisendMessagesWithTokenRequest.swift,\ PostSendMessagesRequest.swift,\ API+Auth.swift,\ API+Deprecated.swift,\ API+Internal.swift,\ API.swift,\ ChainedPaginatedRequest.swift,\ ParametersAdapter.swift,\ Request.swift,\ RequestAdapter.swift,\ ResponsePipeline.swift,\ Session.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/VideoMessage.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Request/PostMessageSendingTokenIssueRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Request/PostMultisendMessagesRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Request/PostMultisendMessagesWithTokenRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Request/PostSendMessagesRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/API/API+Auth.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/API/API+Deprecated.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/API/API+Internal.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/API/API.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/ChainedPaginatedRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/ParametersAdapter.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/Request.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/RequestAdapter.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/ResponsePipeline.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/Session.swift (in target 'LineSDK' from project 'LineSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/VideoMessage.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Request/PostMessageSendingTokenIssueRequest.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Request/PostMultisendMessagesRequest.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Request/PostMultisendMessagesWithTokenRequest.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Request/PostSendMessagesRequest.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/API/API+Auth.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/API/API+Deprecated.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/API/API+Internal.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/API/API.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/ChainedPaginatedRequest.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/ParametersAdapter.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/Request.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/RequestAdapter.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/ResponsePipeline.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/Session.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ PostOpenChatRoomJoinRequest.swift,\ CallbackQueue.swift,\ Colors.swift,\ Constant.swift,\ Delegate.swift,\ Helpers.swift,\ KeyboardObservable.swift,\ KeychainStore.swift,\ LoadingIndicator.swift,\ NotificationToken.swift,\ ResultUtils.swift,\ String.swift,\ URLs.swift,\ UserDefaultsValue.swift,\ GeneratedAssetSymbols.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/OpenChat/Request/PostOpenChatRoomJoinRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/CallbackQueue.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/Colors.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/Constant.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/Delegate.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/Helpers.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/KeyboardObservable.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/KeychainStore.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/LoadingIndicator.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/NotificationToken.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/ResultUtils.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/String.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/URLs.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/UserDefaultsValue.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'LineSDK' from project 'LineSDK')
Command SwiftCompile failed with a nonzero exit code
** BUILD FAILED **
The following build commands failed:
	SwiftEmitModule normal arm64 Emitting\ module\ for\ LineSDK (in target 'LineSDK' from project 'LineSDK')
	EmitSwiftModule normal arm64 (in target 'LineSDK' from project 'LineSDK')
	SwiftCompile normal arm64 Compiling\ PostOpenChatRoomJoinRequest.swift,\ CallbackQueue.swift,\ Colors.swift,\ Constant.swift,\ Delegate.swift,\ Helpers.swift,\ KeyboardObservable.swift,\ KeychainStore.swift,\ LoadingIndicator.swift,\ NotificationToken.swift,\ ResultUtils.swift,\ String.swift,\ URLs.swift,\ UserDefaultsValue.swift,\ GeneratedAssetSymbols.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/OpenChat/Request/PostOpenChatRoomJoinRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/CallbackQueue.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/Colors.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/Constant.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/Delegate.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/Helpers.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/KeyboardObservable.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/KeychainStore.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/LoadingIndicator.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/NotificationToken.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/ResultUtils.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/String.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/URLs.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/UserDefaultsValue.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'LineSDK' from project 'LineSDK')
	Building workspace spi-builder-workspace with scheme LineSDK-Package
(4 failures)
Command line invocation:
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -resolvePackageDependencies
Resolve Package Graph
Resolved source packages:
  LineSDK: /Users/admin/builder/spi-builder-workspace
resolved source packages: LineSDK
{
  "default_localization" : "en",
  "dependencies" : [
  ],
  "manifest_display_name" : "LineSDK",
  "name" : "LineSDK",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "LineSDK",
      "targets" : [
        "LineSDK"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "LineSDKObjC",
      "targets" : [
        "LineSDKObjC"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "LineSDKObjC",
      "module_type" : "SwiftTarget",
      "name" : "LineSDKObjC",
      "path" : "LineSDK/LineSDKObjC",
      "product_memberships" : [
        "LineSDKObjC"
      ],
      "sources" : [
        "Friendship/LineSDKGetBotFriendshipStatusResponse.swift",
        "General/LineSDKErrorConstant.swift",
        "LineSDKUI/LineSDKAuthorizationStatus.swift",
        "LineSDKUI/LineSDKLoginButton.swift",
        "LineSDKUI/OpenChatUI/LineSDKOpenChatCreatingController.swift",
        "LineSDKUI/OpenChatUI/LineSDKOpenChatCreatingControllerDelegate.swift",
        "LineSDKUI/OpenChatUI/LineSDKOpenChatRoomCreatingItem.swift",
        "LineSDKUI/OpenChatUI/LineSDKOpenChatRoomInfo.swift",
        "LineSDKUI/SharingUI/LineSDKMessageShareTargetType.swift",
        "LineSDKUI/SharingUI/LineSDKShareTarget.swift",
        "LineSDKUI/SharingUI/LineSDKShareViewController.swift",
        "LineSDKUI/SharingUI/LineSDKShareViewControllerDelegate.swift",
        "Login/LineSDKLoginManager.swift",
        "Login/LineSDKLoginManagerOptions.swift",
        "Login/LineSDKLoginManagerParameters.swift",
        "Login/LineSDKLoginPermission.swift",
        "Login/LineSDKLoginProcess.swift",
        "Login/LineSDKLoginResult.swift",
        "Login/Model/LineSDKAccessToken.swift",
        "Login/Model/LineSDKAccessTokenStore.swift",
        "Login/Model/LineSDKAccessTokenVerifyResult.swift",
        "Login/Model/LineSDKJWT.swift",
        "Login/Model/LineSDKUserProfile.swift",
        "Messaging/Actions/LineSDKMessageAction.swift",
        "Messaging/Flex/Component/LineSDKFlexBoxComponent.swift",
        "Messaging/Flex/Component/LineSDKFlexButtonComponent.swift",
        "Messaging/Flex/Component/LineSDKFlexFillerComponent.swift",
        "Messaging/Flex/Component/LineSDKFlexIconComponent.swift",
        "Messaging/Flex/Component/LineSDKFlexImageComponent.swift",
        "Messaging/Flex/Component/LineSDKFlexMessageComponent.swift",
        "Messaging/Flex/Component/LineSDKFlexSeparatorComponent.swift",
        "Messaging/Flex/Component/LineSDKFlexTextComponent.swift",
        "Messaging/Flex/Component/LineSDKSpacerComponent.swift",
        "Messaging/Flex/LineSDKFlexBubbleContainer.swift",
        "Messaging/Flex/LineSDKFlexCarouselContainer.swift",
        "Messaging/Flex/LineSDKFlexMessageContainer.swift",
        "Messaging/LineSDKAudioMessage.swift",
        "Messaging/LineSDKFlexMessage.swift",
        "Messaging/LineSDKImageMessage.swift",
        "Messaging/LineSDKLocationMessage.swift",
        "Messaging/LineSDKMessage.swift",
        "Messaging/LineSDKMessagingResponse.swift",
        "Messaging/LineSDKTemplateMessage.swift",
        "Messaging/LineSDKTextMessage.swift",
        "Messaging/LineSDKVideoMessage.swift",
        "Messaging/Template/LineSDKTemplateButtonsPayload.swift",
        "Messaging/Template/LineSDKTemplateCarouselPayload.swift",
        "Messaging/Template/LineSDKTemplateConfirmPayload.swift",
        "Messaging/Template/LineSDKTemplateImageCarouselPayload.swift",
        "Networking/CustomizeCoding/LineSDKHexColor.swift",
        "Networking/LineSDKAPI.swift",
        "Networking/LineSDKAPIError.swift",
        "Networking/LineSDKAuthAPI.swift",
        "OpenChat/LineSDKOpenChatRoomJoinType.swift",
        "OpenChat/LineSDKOpenChatRoomMembershipState.swift",
        "OpenChat/LineSDKOpenChatRoomStatus.swift",
        "Sharing/LineSDKMessageSendingToken.swift",
        "Social/LineSDKGraphResponse.swift",
        "Social/LineSDKGroup.swift",
        "Social/LineSDKUser.swift",
        "Utils/JSONConverter.swift",
        "Utils/LineSDKConstant.swift",
        "Utils/LinsSDKCallbackQueue.swift",
        "Utils/Log.swift",
        "Utils/ResultExtensions.swift"
      ],
      "target_dependencies" : [
        "LineSDK"
      ],
      "type" : "library"
    },
    {
      "c99name" : "LineSDK",
      "module_type" : "SwiftTarget",
      "name" : "LineSDK",
      "path" : "LineSDK/LineSDK",
      "product_memberships" : [
        "LineSDK",
        "LineSDKObjC"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Assets.xcassets",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Resource.bundle",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "Crypto/Algorithms/ECDSA.swift",
        "Crypto/Algorithms/RSA.swift",
        "Crypto/CryptoAlgorithm.swift",
        "Crypto/CryptoData.swift",
        "Crypto/CryptoError.swift",
        "Crypto/CryptoHelpers.swift",
        "Crypto/CryptoKey.swift",
        "Crypto/GetDiscoveryDocumentRequest.swift",
        "Crypto/GetJWKSetRequest.swift",
        "Crypto/JWK/JWA.swift",
        "Crypto/JWK/JWK.swift",
        "Crypto/JWK/JWKSet.swift",
        "Crypto/JWT/JWT.swift",
        "Crypto/JWT/JWTCoder.swift",
        "Crypto/JWT/JWTHelpers.swift",
        "Friendship/Request/GetBotFriendshipStatus.swift",
        "General/LineSDKError.swift",
        "Graph/Model/Group.swift",
        "Graph/Model/User.swift",
        "Graph/Request/GetApproversInFriendsRequest.swift",
        "Graph/Request/GetApproversInGroupRequest.swift",
        "Graph/Request/GetFriendsRequest.swift",
        "Graph/Request/GetGroupsRequest.swift",
        "Graph/Request/GetShareFriendsRequest.swift",
        "Graph/Request/GetShareGroupsRequest.swift",
        "LineSDKUI/AuthorizationStatus.swift",
        "LineSDKUI/Base/StyleNavigationController.swift",
        "LineSDKUI/LoginButton.swift",
        "LineSDKUI/OpenChatUI/Model/FormEntry.swift",
        "LineSDKUI/OpenChatUI/Model/FormSection.swift",
        "LineSDKUI/OpenChatUI/Model/OpenChatCategoryExtensions.swift",
        "LineSDKUI/OpenChatUI/Public/OpenChatCreatingController.swift",
        "LineSDKUI/OpenChatUI/Public/OpenChatCreatingControllerDelegate.swift",
        "LineSDKUI/OpenChatUI/View/CountLimitedTextView.swift",
        "LineSDKUI/OpenChatUI/View/OpenChatRoomDescriptionTableViewCell.swift",
        "LineSDKUI/OpenChatUI/View/OpenChatRoomNameTableViewCell.swift",
        "LineSDKUI/OpenChatUI/View/ToastView.swift",
        "LineSDKUI/OpenChatUI/View/VerticallyCenteredTextView.swift",
        "LineSDKUI/OpenChatUI/ViewControllers/OpenChatCreatingNavigationController.swift",
        "LineSDKUI/OpenChatUI/ViewControllers/OpenChatRoomInfoViewController.swift",
        "LineSDKUI/OpenChatUI/ViewControllers/OpenChatUserProfileViewController.swift",
        "LineSDKUI/OpenChatUI/ViewControllers/OptionSelectingViewController.swift",
        "LineSDKUI/ResourceLoading.swift",
        "LineSDKUI/SharingUI/Model/ColumnDataStore.swift",
        "LineSDKUI/SharingUI/PageViewController/PageTabView.swift",
        "LineSDKUI/SharingUI/PageViewController/PageViewController.swift",
        "LineSDKUI/SharingUI/Public/MessageShareTargetType.swift",
        "LineSDKUI/SharingUI/Public/ShareTarget.swift",
        "LineSDKUI/SharingUI/Public/ShareViewController.swift",
        "LineSDKUI/SharingUI/Public/ShareViewControllerDelegate.swift",
        "LineSDKUI/SharingUI/SelectedPanel/SelectedTargetPanelCell.swift",
        "LineSDKUI/SharingUI/SelectedPanel/SelectedTargetPanelViewController.swift",
        "LineSDKUI/SharingUI/TargetSearch/ShareTargetSearchResultTableViewController.swift",
        "LineSDKUI/SharingUI/TargetSearch/ShareTargetSearchResultViewController.swift",
        "LineSDKUI/SharingUI/TargetSearch/ShareTargetSelectingSectionHeaderView.swift",
        "LineSDKUI/SharingUI/TargetSelecting/ShareRootViewController.swift",
        "LineSDKUI/SharingUI/TargetSelecting/ShareTargetSearchController.swift",
        "LineSDKUI/SharingUI/TargetSelecting/ShareTargetSelectingTableCell.swift",
        "LineSDKUI/SharingUI/TargetSelecting/ShareTargetSelectingViewController.swift",
        "LineSDKUI/SharingUI/TargetSelecting/ShareTargetTableViewStyling.swift",
        "Login/LoginConfiguration.swift",
        "Login/LoginManager.swift",
        "Login/LoginManagerOptions.swift",
        "Login/LoginManagerParameters.swift",
        "Login/LoginPermission.swift",
        "Login/LoginProcess.swift",
        "Login/LoginProcessURLResponse.swift",
        "Login/LoginResult.swift",
        "Login/Model/AccessToken.swift",
        "Login/Model/AccessTokenStore.swift",
        "Login/Model/AccessTokenVerifyResult.swift",
        "Login/Model/UserProfile.swift",
        "Login/PKCE/PKCE.swift",
        "Login/Request/GetUserProfileRequest.swift",
        "Login/Request/GetVerifyTokenRequest.swift",
        "Login/Request/PostExchangeTokenRequest.swift",
        "Login/Request/PostRefreshTokenRequest.swift",
        "Login/Request/PostRevokeTokenRequest.swift",
        "Messaging/Model/Actions/MessageAction.swift",
        "Messaging/Model/AudioMessage.swift",
        "Messaging/Model/Flex/Component/FlexBoxComponent.swift",
        "Messaging/Model/Flex/Component/FlexButtonComponent.swift",
        "Messaging/Model/Flex/Component/FlexFillerComponent.swift",
        "Messaging/Model/Flex/Component/FlexIconComponent.swift",
        "Messaging/Model/Flex/Component/FlexImageComponent.swift",
        "Messaging/Model/Flex/Component/FlexMessageComponent.swift",
        "Messaging/Model/Flex/Component/FlexMessageProperties.swift",
        "Messaging/Model/Flex/Component/FlexSeparatorComponent.swift",
        "Messaging/Model/Flex/Component/FlexSpacerComponent.swift",
        "Messaging/Model/Flex/Component/FlexTextComponent.swift",
        "Messaging/Model/Flex/Container/FlexBubbleContainer.swift",
        "Messaging/Model/Flex/Container/FlexCarouselContainer.swift",
        "Messaging/Model/Flex/Container/FlexMessageContainer.swift",
        "Messaging/Model/Flex/Style/FlexBlockStyle.swift",
        "Messaging/Model/FlexMessage.swift",
        "Messaging/Model/ImageMessage.swift",
        "Messaging/Model/LocationMessage.swift",
        "Messaging/Model/Message.swift",
        "Messaging/Model/MessageProtocols.swift",
        "Messaging/Model/MessageSender.swift",
        "Messaging/Model/Template/Payloads/TemplateButtonsPayload.swift",
        "Messaging/Model/Template/Payloads/TemplateCarouselPayload.swift",
        "Messaging/Model/Template/Payloads/TemplateConfirmPayload.swift",
        "Messaging/Model/Template/Payloads/TemplateImageCarouselPayload.swift",
        "Messaging/Model/Template/Payloads/TemplateMessagePayload.swift",
        "Messaging/Model/Template/Payloads/TemplateMessageProperties.swift",
        "Messaging/Model/TemplateMessage.swift",
        "Messaging/Model/TextMessage.swift",
        "Messaging/Model/VideoMessage.swift",
        "Messaging/Request/PostMessageSendingTokenIssueRequest.swift",
        "Messaging/Request/PostMultisendMessagesRequest.swift",
        "Messaging/Request/PostMultisendMessagesWithTokenRequest.swift",
        "Messaging/Request/PostSendMessagesRequest.swift",
        "Networking/API/API+Auth.swift",
        "Networking/API/API+Deprecated.swift",
        "Networking/API/API+Internal.swift",
        "Networking/API/API.swift",
        "Networking/Client/ChainedPaginatedRequest.swift",
        "Networking/Client/ParametersAdapter.swift",
        "Networking/Client/Request.swift",
        "Networking/Client/RequestAdapter.swift",
        "Networking/Client/ResponsePipeline.swift",
        "Networking/Client/Session.swift",
        "Networking/Images/DownloadableImageView.swift",
        "Networking/Images/ImageDownloader.swift",
        "Networking/Images/ImageManager.swift",
        "Networking/Model/APIError.swift",
        "Networking/Model/CustomizeCoding/CodingExtension.swift",
        "Networking/Model/CustomizeCoding/HexColor.swift",
        "Networking/Model/Unit.swift",
        "OpenChat/Model/OpenChatCategory.swift",
        "OpenChat/Model/OpenChatCreatingFormItem.swift",
        "OpenChat/Model/OpenChatRoomCreatingItem.swift",
        "OpenChat/Request/GetOpenChatRoomJoinTypeRequest.swift",
        "OpenChat/Request/GetOpenChatRoomMembershipStateRequest.swift",
        "OpenChat/Request/GetOpenChatRoomStatusRequest.swift",
        "OpenChat/Request/GetOpenChatTermAgreementStatusRequest.swift",
        "OpenChat/Request/PostOpenChatCreateRequest.swift",
        "OpenChat/Request/PostOpenChatRoomJoinRequest.swift",
        "Utils/CallbackQueue.swift",
        "Utils/Colors.swift",
        "Utils/Constant.swift",
        "Utils/Delegate.swift",
        "Utils/Helpers.swift",
        "Utils/KeyboardObservable.swift",
        "Utils/KeychainStore.swift",
        "Utils/LoadingIndicator.swift",
        "Utils/NotificationToken.swift",
        "Utils/ResultUtils.swift",
        "Utils/String.swift",
        "Utils/URLs.swift",
        "Utils/UserDefaultsValue.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
{
  "workspace" : {
    "name" : "spi-builder-workspace",
    "schemes" : [
      "LineSDK",
      "LineSDK-Package",
      "LineSDKObjC"
    ]
  }
}
{
  "workspace" : {
    "name" : "spi-builder-workspace",
    "schemes" : [
      "LineSDK",
      "LineSDK-Package",
      "LineSDKObjC"
    ]
  }
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme LineSDK-Package -destination generic/platform=xrOS
Command line invocation:
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme LineSDK-Package -destination generic/platform=xrOS
Resolve Package Graph
Resolved source packages:
  LineSDK: /Users/admin/builder/spi-builder-workspace
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (5 targets)
    Target 'LineSDKObjC' in project 'LineSDK'
        ➜ Explicit dependency on target 'LineSDKObjC' in project 'LineSDK'
        ➜ Explicit dependency on target 'LineSDK' in project 'LineSDK'
    Target 'LineSDKObjC' in project 'LineSDK'
        ➜ Explicit dependency on target 'LineSDK' in project 'LineSDK'
    Target 'LineSDK' in project 'LineSDK'
        ➜ Explicit dependency on target 'LineSDK' in project 'LineSDK'
        ➜ Explicit dependency on target 'LineSDK_LineSDK' in project 'LineSDK'
    Target 'LineSDK' in project 'LineSDK'
        ➜ Explicit dependency on target 'LineSDK_LineSDK' in project 'LineSDK'
    Target 'LineSDK_LineSDK' in project 'LineSDK' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/actool --version --output-format xml1
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -x c -c /dev/null
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc --version
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details
Build description signature: af89e491e8ed495baf1f76d2e0aef52f
Build description path: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCBuildData/af89e491e8ed495baf1f76d2e0aef52f.xcbuilddata
ClangStatCache /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache
CompileAssetCatalogVariant thinned /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LineSDK_LineSDK.bundle /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Assets.xcassets (in target 'LineSDK_LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/actool /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Assets.xcassets --compile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK_LineSDK.build/assetcatalog_output/thinned --output-format human-readable-text --notices --warnings --export-dependency-info /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK_LineSDK.build/assetcatalog_dependencies_thinned --output-partial-info-plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK_LineSDK.build/assetcatalog_generated_info.plist_thinned --compress-pngs --enable-on-demand-resources NO --development-region en --target-device vision --minimum-deployment-target 1.0 --platform xros
/* com.apple.actool.compilation-results */
/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK_LineSDK.build/assetcatalog_generated_info.plist_thinned
/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK_LineSDK.build/assetcatalog_output/thinned/Assets.car
SwiftDriver LineSDK normal arm64 com.apple.xcode.tools.swift.compiler (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name LineSDK -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/Objects-normal/arm64/LineSDK.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/Objects-normal/arm64/LineSDK-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/LineSDK.build/Debug-xros/LineSDK.build/Objects-normal/arm64/LineSDK.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/LineSDK.build/Debug-xros/LineSDK.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/Objects-normal/arm64/LineSDK_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.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/LineSDK.build/Debug-xros/LineSDK.build/Objects-normal/arm64/LineSDK-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ GetBotFriendshipStatus.swift,\ LineSDKError.swift,\ Group.swift,\ User.swift,\ GetApproversInFriendsRequest.swift,\ GetApproversInGroupRequest.swift,\ GetFriendsRequest.swift,\ GetGroupsRequest.swift,\ GetShareFriendsRequest.swift,\ GetShareGroupsRequest.swift,\ AuthorizationStatus.swift,\ StyleNavigationController.swift,\ LoginButton.swift,\ FormEntry.swift,\ FormSection.swift,\ OpenChatCategoryExtensions.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Friendship/Request/GetBotFriendshipStatus.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/General/LineSDKError.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Graph/Model/Group.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Graph/Model/User.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Graph/Request/GetApproversInFriendsRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Graph/Request/GetApproversInGroupRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Graph/Request/GetFriendsRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Graph/Request/GetGroupsRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Graph/Request/GetShareFriendsRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Graph/Request/GetShareGroupsRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/AuthorizationStatus.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/Base/StyleNavigationController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/LoginButton.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/Model/FormEntry.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/Model/FormSection.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/Model/OpenChatCategoryExtensions.swift (in target 'LineSDK' from project 'LineSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Friendship/Request/GetBotFriendshipStatus.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/General/LineSDKError.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Graph/Model/Group.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Graph/Model/User.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Graph/Request/GetApproversInFriendsRequest.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Graph/Request/GetApproversInGroupRequest.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Graph/Request/GetFriendsRequest.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Graph/Request/GetGroupsRequest.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Graph/Request/GetShareFriendsRequest.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Graph/Request/GetShareGroupsRequest.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/AuthorizationStatus.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/Base/StyleNavigationController.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/LoginButton.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/Model/FormEntry.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/Model/FormSection.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/Model/OpenChatCategoryExtensions.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ ShareTarget.swift,\ ShareViewController.swift,\ ShareViewControllerDelegate.swift,\ SelectedTargetPanelCell.swift,\ SelectedTargetPanelViewController.swift,\ ShareTargetSearchResultTableViewController.swift,\ ShareTargetSearchResultViewController.swift,\ ShareTargetSelectingSectionHeaderView.swift,\ ShareRootViewController.swift,\ ShareTargetSearchController.swift,\ ShareTargetSelectingTableCell.swift,\ ShareTargetSelectingViewController.swift,\ ShareTargetTableViewStyling.swift,\ LoginConfiguration.swift,\ LoginManager.swift,\ LoginManagerOptions.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/Public/ShareTarget.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/Public/ShareViewController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/Public/ShareViewControllerDelegate.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/SelectedPanel/SelectedTargetPanelCell.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/SelectedPanel/SelectedTargetPanelViewController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSearch/ShareTargetSearchResultTableViewController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSearch/ShareTargetSearchResultViewController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSearch/ShareTargetSelectingSectionHeaderView.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSelecting/ShareRootViewController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSelecting/ShareTargetSearchController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSelecting/ShareTargetSelectingTableCell.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSelecting/ShareTargetSelectingViewController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSelecting/ShareTargetTableViewStyling.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginConfiguration.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManager.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerOptions.swift (in target 'LineSDK' from project 'LineSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/Public/ShareTarget.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/Public/ShareViewController.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/Public/ShareViewControllerDelegate.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/SelectedPanel/SelectedTargetPanelCell.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/SelectedPanel/SelectedTargetPanelViewController.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSearch/ShareTargetSearchResultTableViewController.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSearch/ShareTargetSearchResultViewController.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSearch/ShareTargetSelectingSectionHeaderView.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSelecting/ShareRootViewController.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSelecting/ShareTargetSearchController.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSelecting/ShareTargetSelectingTableCell.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSelecting/ShareTargetSelectingViewController.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSelecting/ShareTargetTableViewStyling.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginConfiguration.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManager.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerOptions.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ OpenChatCreatingController.swift,\ OpenChatCreatingControllerDelegate.swift,\ CountLimitedTextView.swift,\ OpenChatRoomDescriptionTableViewCell.swift,\ OpenChatRoomNameTableViewCell.swift,\ ToastView.swift,\ VerticallyCenteredTextView.swift,\ OpenChatCreatingNavigationController.swift,\ OpenChatRoomInfoViewController.swift,\ OpenChatUserProfileViewController.swift,\ OptionSelectingViewController.swift,\ ResourceLoading.swift,\ ColumnDataStore.swift,\ PageTabView.swift,\ PageViewController.swift,\ MessageShareTargetType.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/Public/OpenChatCreatingController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/Public/OpenChatCreatingControllerDelegate.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/View/CountLimitedTextView.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/View/OpenChatRoomDescriptionTableViewCell.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/View/OpenChatRoomNameTableViewCell.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/View/ToastView.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/View/VerticallyCenteredTextView.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/ViewControllers/OpenChatCreatingNavigationController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/ViewControllers/OpenChatRoomInfoViewController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/ViewControllers/OpenChatUserProfileViewController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/ViewControllers/OptionSelectingViewController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/ResourceLoading.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/Model/ColumnDataStore.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/PageViewController/PageTabView.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/PageViewController/PageViewController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/Public/MessageShareTargetType.swift (in target 'LineSDK' from project 'LineSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/Public/OpenChatCreatingController.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/Public/OpenChatCreatingControllerDelegate.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/View/CountLimitedTextView.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/View/OpenChatRoomDescriptionTableViewCell.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/View/OpenChatRoomNameTableViewCell.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/View/ToastView.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/View/VerticallyCenteredTextView.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/ViewControllers/OpenChatCreatingNavigationController.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/ViewControllers/OpenChatRoomInfoViewController.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/ViewControllers/OpenChatUserProfileViewController.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/ViewControllers/OptionSelectingViewController.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/ResourceLoading.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/Model/ColumnDataStore.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/PageViewController/PageTabView.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/PageViewController/PageViewController.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/Public/MessageShareTargetType.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ LoginManagerParameters.swift,\ LoginPermission.swift,\ LoginProcess.swift,\ LoginProcessURLResponse.swift,\ LoginResult.swift,\ AccessToken.swift,\ AccessTokenStore.swift,\ AccessTokenVerifyResult.swift,\ UserProfile.swift,\ PKCE.swift,\ GetUserProfileRequest.swift,\ GetVerifyTokenRequest.swift,\ PostExchangeTokenRequest.swift,\ PostRefreshTokenRequest.swift,\ PostRevokeTokenRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginProcess.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginProcessURLResponse.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginResult.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Model/AccessToken.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Model/AccessTokenStore.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Model/AccessTokenVerifyResult.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Model/UserProfile.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/PKCE/PKCE.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Request/GetUserProfileRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Request/GetVerifyTokenRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Request/PostExchangeTokenRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Request/PostRefreshTokenRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Request/PostRevokeTokenRequest.swift (in target 'LineSDK' from project 'LineSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginProcess.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginProcessURLResponse.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginResult.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Model/AccessToken.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Model/AccessTokenStore.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Model/AccessTokenVerifyResult.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Model/UserProfile.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/PKCE/PKCE.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Request/GetUserProfileRequest.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Request/GetVerifyTokenRequest.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Request/PostExchangeTokenRequest.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Request/PostRefreshTokenRequest.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Request/PostRevokeTokenRequest.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift,\ ECDSA.swift,\ RSA.swift,\ CryptoAlgorithm.swift,\ CryptoData.swift,\ CryptoError.swift,\ CryptoHelpers.swift,\ CryptoKey.swift,\ GetDiscoveryDocumentRequest.swift,\ GetJWKSetRequest.swift,\ JWA.swift,\ JWK.swift,\ JWKSet.swift,\ JWT.swift,\ JWTCoder.swift,\ JWTHelpers.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/Algorithms/ECDSA.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/Algorithms/RSA.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/CryptoAlgorithm.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/CryptoData.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/CryptoError.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/CryptoHelpers.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/CryptoKey.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/GetDiscoveryDocumentRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/GetJWKSetRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/JWK/JWA.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/JWK/JWK.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/JWK/JWKSet.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/JWT/JWT.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/JWT/JWTCoder.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/JWT/JWTHelpers.swift (in target 'LineSDK' from project 'LineSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/DerivedSources/resource_bundle_accessor.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/Algorithms/ECDSA.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/Algorithms/RSA.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/CryptoAlgorithm.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/CryptoData.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/CryptoError.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/CryptoHelpers.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/CryptoKey.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/GetDiscoveryDocumentRequest.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/GetJWKSetRequest.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/JWK/JWA.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/JWK/JWK.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/JWK/JWKSet.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/JWT/JWT.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/JWT/JWTCoder.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/JWT/JWTHelpers.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ VideoMessage.swift,\ PostMessageSendingTokenIssueRequest.swift,\ PostMultisendMessagesRequest.swift,\ PostMultisendMessagesWithTokenRequest.swift,\ PostSendMessagesRequest.swift,\ API+Auth.swift,\ API+Deprecated.swift,\ API+Internal.swift,\ API.swift,\ ChainedPaginatedRequest.swift,\ ParametersAdapter.swift,\ Request.swift,\ RequestAdapter.swift,\ ResponsePipeline.swift,\ Session.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/VideoMessage.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Request/PostMessageSendingTokenIssueRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Request/PostMultisendMessagesRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Request/PostMultisendMessagesWithTokenRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Request/PostSendMessagesRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/API/API+Auth.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/API/API+Deprecated.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/API/API+Internal.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/API/API.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/ChainedPaginatedRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/ParametersAdapter.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/Request.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/RequestAdapter.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/ResponsePipeline.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/Session.swift (in target 'LineSDK' from project 'LineSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/VideoMessage.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Request/PostMessageSendingTokenIssueRequest.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Request/PostMultisendMessagesRequest.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Request/PostMultisendMessagesWithTokenRequest.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Request/PostSendMessagesRequest.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/API/API+Auth.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/API/API+Deprecated.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/API/API+Internal.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/API/API.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/ChainedPaginatedRequest.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/ParametersAdapter.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/Request.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/RequestAdapter.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/ResponsePipeline.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/Session.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ MessageAction.swift,\ AudioMessage.swift,\ FlexBoxComponent.swift,\ FlexButtonComponent.swift,\ FlexFillerComponent.swift,\ FlexIconComponent.swift,\ FlexImageComponent.swift,\ FlexMessageComponent.swift,\ FlexMessageProperties.swift,\ FlexSeparatorComponent.swift,\ FlexSpacerComponent.swift,\ FlexTextComponent.swift,\ FlexBubbleContainer.swift,\ FlexCarouselContainer.swift,\ FlexMessageContainer.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Actions/MessageAction.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/AudioMessage.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexBoxComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexButtonComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexFillerComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexIconComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexImageComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexSeparatorComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexSpacerComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexTextComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Container/FlexBubbleContainer.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Container/FlexCarouselContainer.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Container/FlexMessageContainer.swift (in target 'LineSDK' from project 'LineSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Actions/MessageAction.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/AudioMessage.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexBoxComponent.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexButtonComponent.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexFillerComponent.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexIconComponent.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexImageComponent.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageComponent.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexSeparatorComponent.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexSpacerComponent.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexTextComponent.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Container/FlexBubbleContainer.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Container/FlexCarouselContainer.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Container/FlexMessageContainer.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64 Emitting\ module\ for\ LineSDK (in target 'LineSDK' from project 'LineSDK')
Failed frontend command:
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/Algorithms/ECDSA.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/Algorithms/RSA.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/CryptoAlgorithm.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/CryptoData.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/CryptoError.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/CryptoHelpers.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/CryptoKey.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/GetDiscoveryDocumentRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/GetJWKSetRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/JWK/JWA.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/JWK/JWK.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/JWK/JWKSet.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/JWT/JWT.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/JWT/JWTCoder.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Crypto/JWT/JWTHelpers.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Friendship/Request/GetBotFriendshipStatus.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/General/LineSDKError.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Graph/Model/Group.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Graph/Model/User.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Graph/Request/GetApproversInFriendsRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Graph/Request/GetApproversInGroupRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Graph/Request/GetFriendsRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Graph/Request/GetGroupsRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Graph/Request/GetShareFriendsRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Graph/Request/GetShareGroupsRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/AuthorizationStatus.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/Base/StyleNavigationController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/LoginButton.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/Model/FormEntry.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/Model/FormSection.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/Model/OpenChatCategoryExtensions.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/Public/OpenChatCreatingController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/Public/OpenChatCreatingControllerDelegate.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/View/CountLimitedTextView.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/View/OpenChatRoomDescriptionTableViewCell.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/View/OpenChatRoomNameTableViewCell.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/View/ToastView.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/View/VerticallyCenteredTextView.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/ViewControllers/OpenChatCreatingNavigationController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/ViewControllers/OpenChatRoomInfoViewController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/ViewControllers/OpenChatUserProfileViewController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/ViewControllers/OptionSelectingViewController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/ResourceLoading.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/Model/ColumnDataStore.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/PageViewController/PageTabView.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/PageViewController/PageViewController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/Public/MessageShareTargetType.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/Public/ShareTarget.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/Public/ShareViewController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/Public/ShareViewControllerDelegate.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/SelectedPanel/SelectedTargetPanelCell.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/SelectedPanel/SelectedTargetPanelViewController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSearch/ShareTargetSearchResultTableViewController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSearch/ShareTargetSearchResultViewController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSearch/ShareTargetSelectingSectionHeaderView.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSelecting/ShareRootViewController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSelecting/ShareTargetSearchController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSelecting/ShareTargetSelectingTableCell.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSelecting/ShareTargetSelectingViewController.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/SharingUI/TargetSelecting/ShareTargetTableViewStyling.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginConfiguration.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManager.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerOptions.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginManagerParameters.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginPermission.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginProcess.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginProcessURLResponse.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginResult.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Model/AccessToken.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Model/AccessTokenStore.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Model/AccessTokenVerifyResult.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Model/UserProfile.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/PKCE/PKCE.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Request/GetUserProfileRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Request/GetVerifyTokenRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Request/PostExchangeTokenRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Request/PostRefreshTokenRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/Request/PostRevokeTokenRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Actions/MessageAction.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/AudioMessage.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexBoxComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexButtonComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexFillerComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexIconComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexImageComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexMessageProperties.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexSeparatorComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexSpacerComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Component/FlexTextComponent.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Container/FlexBubbleContainer.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Container/FlexCarouselContainer.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Container/FlexMessageContainer.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Flex/Style/FlexBlockStyle.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/FlexMessage.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/ImageMessage.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/LocationMessage.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Message.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/MessageProtocols.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/MessageSender.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Template/Payloads/TemplateButtonsPayload.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Template/Payloads/TemplateCarouselPayload.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Template/Payloads/TemplateConfirmPayload.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Template/Payloads/TemplateImageCarouselPayload.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Template/Payloads/TemplateMessagePayload.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/Template/Payloads/TemplateMessageProperties.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/TemplateMessage.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/TextMessage.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Model/VideoMessage.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Request/PostMessageSendingTokenIssueRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Request/PostMultisendMessagesRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Request/PostMultisendMessagesWithTokenRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Messaging/Request/PostSendMessagesRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/API/API+Auth.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/API/API+Deprecated.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/API/API+Internal.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/API/API.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/ChainedPaginatedRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/ParametersAdapter.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/Request.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/RequestAdapter.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/ResponsePipeline.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Client/Session.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Images/DownloadableImageView.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Images/ImageDownloader.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Images/ImageManager.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Model/APIError.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Model/CustomizeCoding/CodingExtension.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Model/CustomizeCoding/HexColor.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Model/Unit.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/OpenChat/Model/OpenChatCategory.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/OpenChat/Model/OpenChatCreatingFormItem.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/OpenChat/Model/OpenChatRoomCreatingItem.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/OpenChat/Request/GetOpenChatRoomJoinTypeRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/OpenChat/Request/GetOpenChatRoomMembershipStateRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/OpenChat/Request/GetOpenChatRoomStatusRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/OpenChat/Request/GetOpenChatTermAgreementStatusRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/OpenChat/Request/PostOpenChatCreateRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/OpenChat/Request/PostOpenChatRoomJoinRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/CallbackQueue.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/Colors.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/Constant.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/Delegate.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/Helpers.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/KeyboardObservable.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/KeychainStore.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/LoadingIndicator.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/NotificationToken.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/ResultUtils.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/String.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/URLs.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/UserDefaultsValue.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/DerivedSources/GeneratedAssetSymbols.swift -target arm64-apple-xros1.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/Objects-normal/arm64/LineSDK_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -empty-abi-descriptor -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name LineSDK -frontend-parseable-output -disable-clang-spi -target-sdk-version 2.4 -target-sdk-name xros2.4 -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/bin/swift-plugin-server -in-process-plugin-server-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/libSwiftInProcPluginServer.dylib -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/Objects-normal/arm64/LineSDK.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/Objects-normal/arm64/LineSDK.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/Objects-normal/arm64/LineSDK-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/Objects-normal/arm64/LineSDK-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/Objects-normal/arm64/LineSDK-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/Objects-normal/arm64/LineSDK.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/Objects-normal/arm64/LineSDK.abi.json
EmitSwiftModule normal arm64 (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/View/CountLimitedTextView.swift:104:16: warning: 'contentEdgeInsets' was deprecated in visionOS 1.0: This property is ignored when using UIButtonConfiguration
        button.contentEdgeInsets = UIEdgeInsets(top: 5, left: 5, bottom: 5, right: 5)
               ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/LineSDKUI/OpenChatUI/ViewControllers/OpenChatUserProfileViewController.swift:59:20: error: 'keyboardDismissMode' is unavailable in visionOS
        scrollView.keyboardDismissMode = .interactive
                   ^~~~~~~~~~~~~~~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:231:54: note: 'keyboardDismissMode' has been explicitly marked unavailable here
@property(nonatomic) UIScrollViewKeyboardDismissMode keyboardDismissMode API_AVAILABLE(ios(7.0)) API_UNAVAILABLE(visionos); // default is UIScrollViewKeyboardDismissModeNone
                                                     ^
/Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Login/LoginProcess.swift:451:25: error: 'SFSafariViewControllerDelegate' is unavailable in visionOS
extension WebLoginFlow: SFSafariViewControllerDelegate {
                        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/System/Library/Frameworks/SafariServices.framework/Headers/SFSafariViewController.h:130:11: note: 'SFSafariViewControllerDelegate' has been explicitly marked unavailable here
@protocol SFSafariViewControllerDelegate <NSObject>
          ^
SwiftCompile normal arm64 Compiling\ PostOpenChatRoomJoinRequest.swift,\ CallbackQueue.swift,\ Colors.swift,\ Constant.swift,\ Delegate.swift,\ Helpers.swift,\ KeyboardObservable.swift,\ KeychainStore.swift,\ LoadingIndicator.swift,\ NotificationToken.swift,\ ResultUtils.swift,\ String.swift,\ URLs.swift,\ UserDefaultsValue.swift,\ GeneratedAssetSymbols.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/OpenChat/Request/PostOpenChatRoomJoinRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/CallbackQueue.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/Colors.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/Constant.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/Delegate.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/Helpers.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/KeyboardObservable.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/KeychainStore.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/LoadingIndicator.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/NotificationToken.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/ResultUtils.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/String.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/URLs.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/UserDefaultsValue.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'LineSDK' from project 'LineSDK')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/OpenChat/Request/PostOpenChatRoomJoinRequest.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/CallbackQueue.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/Colors.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/Constant.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/Delegate.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/Helpers.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/KeyboardObservable.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/KeychainStore.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/LoadingIndicator.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/NotificationToken.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/ResultUtils.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/String.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/URLs.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Utils/UserDefaultsValue.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ DownloadableImageView.swift,\ ImageDownloader.swift,\ ImageManager.swift,\ APIError.swift,\ CodingExtension.swift,\ HexColor.swift,\ Unit.swift,\ OpenChatCategory.swift,\ OpenChatCreatingFormItem.swift,\ OpenChatRoomCreatingItem.swift,\ GetOpenChatRoomJoinTypeRequest.swift,\ GetOpenChatRoomMembershipStateRequest.swift,\ GetOpenChatRoomStatusRequest.swift,\ GetOpenChatTermAgreementStatusRequest.swift,\ PostOpenChatCreateRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Images/DownloadableImageView.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Images/ImageDownloader.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Images/ImageManager.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Model/APIError.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Model/CustomizeCoding/CodingExtension.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Model/CustomizeCoding/HexColor.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Networking/Model/Unit.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/OpenChat/Model/OpenChatCategory.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/OpenChat/Model/OpenChatCreatingFormItem.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/OpenChat/Model/OpenChatRoomCreatingItem.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/OpenChat/Request/GetOpenChatRoomJoinTypeRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/OpenChat/Request/GetOpenChatRoomMembershipStateRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/OpenChat/Request/GetOpenChatRoomStatusRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/OpenChat/Request/GetOpenChatTermAgreementStatusRequest.swift /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/OpenChat/Request/PostOpenChatCreateRequest.swift (in target 'LineSDK' from project 'LineSDK')
LinkAssetCatalog /Users/admin/builder/spi-builder-workspace/LineSDK/LineSDK/Assets.xcassets (in target 'LineSDK_LineSDK' from project 'LineSDK')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-linkAssetCatalog --thinned /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK_LineSDK.build/assetcatalog_output/thinned --thinned-dependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK_LineSDK.build/assetcatalog_dependencies_thinned --thinned-info-plist-content /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK_LineSDK.build/assetcatalog_generated_info.plist_thinned --unthinned /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK_LineSDK.build/assetcatalog_output/unthinned --unthinned-dependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK_LineSDK.build/assetcatalog_dependencies_unthinned --unthinned-info-plist-content /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK_LineSDK.build/assetcatalog_generated_info.plist_unthinned --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LineSDK_LineSDK.bundle --plist-output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/LineSDK.build/Debug-xros/LineSDK_LineSDK.build/assetcatalog_generated_info.plist
note: Emplaced /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/LineSDK_LineSDK.bundle/Assets.car (in target 'LineSDK_LineSDK' from project 'LineSDK')
** BUILD FAILED **
The following build commands failed:
	SwiftEmitModule normal arm64 Emitting\ module\ for\ LineSDK (in target 'LineSDK' from project 'LineSDK')
	EmitSwiftModule normal arm64 (in target 'LineSDK' from project 'LineSDK')
	Building workspace spi-builder-workspace with scheme LineSDK-Package
(3 failures)
BUILD FAILURE 6.1 visionOS