Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1db8869bb6 | |||
| 64da58b93a | |||
| 9414c887e4 | |||
| 9ba9c99815 | |||
| 39728313b6 | |||
| ee793de89d |
@ -18,23 +18,6 @@
|
||||
<key>SupportedPlatform</key>
|
||||
<string>ios</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>BinaryPath</key>
|
||||
<string>M2Kit.framework/M2Kit</string>
|
||||
<key>LibraryIdentifier</key>
|
||||
<string>ios-arm64_x86_64-simulator</string>
|
||||
<key>LibraryPath</key>
|
||||
<string>M2Kit.framework</string>
|
||||
<key>SupportedArchitectures</key>
|
||||
<array>
|
||||
<string>arm64</string>
|
||||
<string>x86_64</string>
|
||||
</array>
|
||||
<key>SupportedPlatform</key>
|
||||
<string>ios</string>
|
||||
<key>SupportedPlatformVariant</key>
|
||||
<string>simulator</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>BinaryPath</key>
|
||||
<string>M2Kit.framework/Versions/A/M2Kit</string>
|
||||
@ -52,6 +35,23 @@
|
||||
<key>SupportedPlatformVariant</key>
|
||||
<string>maccatalyst</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>BinaryPath</key>
|
||||
<string>M2Kit.framework/M2Kit</string>
|
||||
<key>LibraryIdentifier</key>
|
||||
<string>ios-arm64_x86_64-simulator</string>
|
||||
<key>LibraryPath</key>
|
||||
<string>M2Kit.framework</string>
|
||||
<key>SupportedArchitectures</key>
|
||||
<array>
|
||||
<string>arm64</string>
|
||||
<string>x86_64</string>
|
||||
</array>
|
||||
<key>SupportedPlatform</key>
|
||||
<string>ios</string>
|
||||
<key>SupportedPlatformVariant</key>
|
||||
<string>simulator</string>
|
||||
</dict>
|
||||
</array>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>XFWK</string>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
#if 0
|
||||
#elif defined(__arm64__) && __arm64__
|
||||
// Generated by Apple Swift version 6.3 effective-5.10 (swiftlang-6.3.0.123.5 clang-2100.0.123.102)
|
||||
// Generated by Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101)
|
||||
#ifndef M2KIT_SWIFT_H
|
||||
#define M2KIT_SWIFT_H
|
||||
#pragma clang diagnostic push
|
||||
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -1,7 +1,8 @@
|
||||
// swift-interface-format-version: 1.0
|
||||
// swift-compiler-version: Apple Swift version 6.3 effective-5.10 (swiftlang-6.3.0.123.5 clang-2100.0.123.102)
|
||||
// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101)
|
||||
// swift-module-flags: -target arm64-apple-ios16.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3
|
||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3.3
|
||||
import AVFoundation
|
||||
import Combine
|
||||
import CommonCrypto
|
||||
import Foundation
|
||||
@ -536,15 +537,28 @@ public enum M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
}
|
||||
@_Concurrency.MainActor public struct M2NetMonitor {
|
||||
@_Concurrency.MainActor public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||
@_Concurrency.MainActor public var isConnected: Swift.Bool {
|
||||
@_hasMissingDesignatedInitializers @_Concurrency.MainActor final public class M2NetMonitor : Foundation.ObservableObject {
|
||||
@_Concurrency.MainActor public static let shared: M2Kit.M2NetMonitor
|
||||
@Combine.Published<Swift.Bool> @_projectedValueProperty($isConnected) @_Concurrency.MainActor final public var isConnected: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
@_Concurrency.MainActor final public var $isConnected: Combine.Published<Swift.Bool>.Publisher {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public func stop()
|
||||
@Combine.Published<M2Kit.M2NetConnecttionType> @_projectedValueProperty($connectionType) @_Concurrency.MainActor final public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor final public var $connectionType: Combine.Published<M2Kit.M2NetConnecttionType>.Publisher {
|
||||
get
|
||||
}
|
||||
@Combine.Published<Swift.Bool> @_projectedValueProperty($isReady) @_Concurrency.MainActor final public var isReady: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor final public var $isReady: Combine.Published<Swift.Bool>.Publisher {
|
||||
get
|
||||
}
|
||||
public typealias ObjectWillChangePublisher = Combine.ObservableObjectPublisher
|
||||
@objc deinit
|
||||
}
|
||||
@_Concurrency.MainActor public struct M2Radio {
|
||||
}
|
||||
@ -887,6 +901,10 @@ public enum M2VideoStatus {
|
||||
@_Concurrency.MainActor public static func checkStatus(trackID: Swift.String) -> M2Kit.M2VideoStatus
|
||||
@_Concurrency.MainActor public static func deleteDataOf(trackID: Swift.String)
|
||||
@_Concurrency.MainActor public static func filePathOf(trackID: Swift.String) -> Swift.String
|
||||
@_Concurrency.MainActor public static var enableWorkForInCellularNetwork: Swift.Bool {
|
||||
get
|
||||
set
|
||||
}
|
||||
}
|
||||
extension M2Kit.M2Utils {
|
||||
@_Concurrency.MainActor public static var countryCode: Swift.String {
|
||||
|
||||
Binary file not shown.
@ -1,7 +1,8 @@
|
||||
// swift-interface-format-version: 1.0
|
||||
// swift-compiler-version: Apple Swift version 6.3 effective-5.10 (swiftlang-6.3.0.123.5 clang-2100.0.123.102)
|
||||
// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101)
|
||||
// swift-module-flags: -target arm64-apple-ios16.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3
|
||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3.3
|
||||
import AVFoundation
|
||||
import Combine
|
||||
import CommonCrypto
|
||||
import Foundation
|
||||
@ -536,15 +537,28 @@ public enum M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
}
|
||||
@_Concurrency.MainActor public struct M2NetMonitor {
|
||||
@_Concurrency.MainActor public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||
@_Concurrency.MainActor public var isConnected: Swift.Bool {
|
||||
@_hasMissingDesignatedInitializers @_Concurrency.MainActor final public class M2NetMonitor : Foundation.ObservableObject {
|
||||
@_Concurrency.MainActor public static let shared: M2Kit.M2NetMonitor
|
||||
@Combine.Published<Swift.Bool> @_projectedValueProperty($isConnected) @_Concurrency.MainActor final public var isConnected: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
@_Concurrency.MainActor final public var $isConnected: Combine.Published<Swift.Bool>.Publisher {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public func stop()
|
||||
@Combine.Published<M2Kit.M2NetConnecttionType> @_projectedValueProperty($connectionType) @_Concurrency.MainActor final public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor final public var $connectionType: Combine.Published<M2Kit.M2NetConnecttionType>.Publisher {
|
||||
get
|
||||
}
|
||||
@Combine.Published<Swift.Bool> @_projectedValueProperty($isReady) @_Concurrency.MainActor final public var isReady: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor final public var $isReady: Combine.Published<Swift.Bool>.Publisher {
|
||||
get
|
||||
}
|
||||
public typealias ObjectWillChangePublisher = Combine.ObservableObjectPublisher
|
||||
@objc deinit
|
||||
}
|
||||
@_Concurrency.MainActor public struct M2Radio {
|
||||
}
|
||||
@ -887,6 +901,10 @@ public enum M2VideoStatus {
|
||||
@_Concurrency.MainActor public static func checkStatus(trackID: Swift.String) -> M2Kit.M2VideoStatus
|
||||
@_Concurrency.MainActor public static func deleteDataOf(trackID: Swift.String)
|
||||
@_Concurrency.MainActor public static func filePathOf(trackID: Swift.String) -> Swift.String
|
||||
@_Concurrency.MainActor public static var enableWorkForInCellularNetwork: Swift.Bool {
|
||||
get
|
||||
set
|
||||
}
|
||||
}
|
||||
extension M2Kit.M2Utils {
|
||||
@_Concurrency.MainActor public static var countryCode: Swift.String {
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
#if 0
|
||||
#elif defined(__arm64__) && __arm64__
|
||||
// Generated by Apple Swift version 6.3 effective-5.10 (swiftlang-6.3.0.123.5 clang-2100.0.123.102)
|
||||
// Generated by Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101)
|
||||
#ifndef M2KIT_SWIFT_H
|
||||
#define M2KIT_SWIFT_H
|
||||
#pragma clang diagnostic push
|
||||
@ -389,7 +389,7 @@ SWIFT_CLASS("_TtC5M2Kit7M2WebVC")
|
||||
#endif
|
||||
|
||||
#elif defined(__x86_64__) && __x86_64__
|
||||
// Generated by Apple Swift version 6.3 effective-5.10 (swiftlang-6.3.0.123.5 clang-2100.0.123.102)
|
||||
// Generated by Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101)
|
||||
#ifndef M2KIT_SWIFT_H
|
||||
#define M2KIT_SWIFT_H
|
||||
#pragma clang diagnostic push
|
||||
|
||||
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -1,7 +1,8 @@
|
||||
// swift-interface-format-version: 1.0
|
||||
// swift-compiler-version: Apple Swift version 6.3 effective-5.10 (swiftlang-6.3.0.123.5 clang-2100.0.123.102)
|
||||
// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101)
|
||||
// swift-module-flags: -target arm64-apple-ios16.0-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3
|
||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3.3
|
||||
import AVFoundation
|
||||
import Combine
|
||||
import CommonCrypto
|
||||
import Foundation
|
||||
@ -536,15 +537,28 @@ public enum M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
}
|
||||
@_Concurrency.MainActor public struct M2NetMonitor {
|
||||
@_Concurrency.MainActor public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||
@_Concurrency.MainActor public var isConnected: Swift.Bool {
|
||||
@_hasMissingDesignatedInitializers @_Concurrency.MainActor final public class M2NetMonitor : Foundation.ObservableObject {
|
||||
@_Concurrency.MainActor public static let shared: M2Kit.M2NetMonitor
|
||||
@Combine.Published<Swift.Bool> @_projectedValueProperty($isConnected) @_Concurrency.MainActor final public var isConnected: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
@_Concurrency.MainActor final public var $isConnected: Combine.Published<Swift.Bool>.Publisher {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public func stop()
|
||||
@Combine.Published<M2Kit.M2NetConnecttionType> @_projectedValueProperty($connectionType) @_Concurrency.MainActor final public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor final public var $connectionType: Combine.Published<M2Kit.M2NetConnecttionType>.Publisher {
|
||||
get
|
||||
}
|
||||
@Combine.Published<Swift.Bool> @_projectedValueProperty($isReady) @_Concurrency.MainActor final public var isReady: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor final public var $isReady: Combine.Published<Swift.Bool>.Publisher {
|
||||
get
|
||||
}
|
||||
public typealias ObjectWillChangePublisher = Combine.ObservableObjectPublisher
|
||||
@objc deinit
|
||||
}
|
||||
@_Concurrency.MainActor public struct M2Radio {
|
||||
}
|
||||
@ -887,6 +901,10 @@ public enum M2VideoStatus {
|
||||
@_Concurrency.MainActor public static func checkStatus(trackID: Swift.String) -> M2Kit.M2VideoStatus
|
||||
@_Concurrency.MainActor public static func deleteDataOf(trackID: Swift.String)
|
||||
@_Concurrency.MainActor public static func filePathOf(trackID: Swift.String) -> Swift.String
|
||||
@_Concurrency.MainActor public static var enableWorkForInCellularNetwork: Swift.Bool {
|
||||
get
|
||||
set
|
||||
}
|
||||
}
|
||||
extension M2Kit.M2Utils {
|
||||
@_Concurrency.MainActor public static var countryCode: Swift.String {
|
||||
|
||||
Binary file not shown.
@ -1,7 +1,8 @@
|
||||
// swift-interface-format-version: 1.0
|
||||
// swift-compiler-version: Apple Swift version 6.3 effective-5.10 (swiftlang-6.3.0.123.5 clang-2100.0.123.102)
|
||||
// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101)
|
||||
// swift-module-flags: -target arm64-apple-ios16.0-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3
|
||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3.3
|
||||
import AVFoundation
|
||||
import Combine
|
||||
import CommonCrypto
|
||||
import Foundation
|
||||
@ -536,15 +537,28 @@ public enum M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
}
|
||||
@_Concurrency.MainActor public struct M2NetMonitor {
|
||||
@_Concurrency.MainActor public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||
@_Concurrency.MainActor public var isConnected: Swift.Bool {
|
||||
@_hasMissingDesignatedInitializers @_Concurrency.MainActor final public class M2NetMonitor : Foundation.ObservableObject {
|
||||
@_Concurrency.MainActor public static let shared: M2Kit.M2NetMonitor
|
||||
@Combine.Published<Swift.Bool> @_projectedValueProperty($isConnected) @_Concurrency.MainActor final public var isConnected: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
@_Concurrency.MainActor final public var $isConnected: Combine.Published<Swift.Bool>.Publisher {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public func stop()
|
||||
@Combine.Published<M2Kit.M2NetConnecttionType> @_projectedValueProperty($connectionType) @_Concurrency.MainActor final public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor final public var $connectionType: Combine.Published<M2Kit.M2NetConnecttionType>.Publisher {
|
||||
get
|
||||
}
|
||||
@Combine.Published<Swift.Bool> @_projectedValueProperty($isReady) @_Concurrency.MainActor final public var isReady: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor final public var $isReady: Combine.Published<Swift.Bool>.Publisher {
|
||||
get
|
||||
}
|
||||
public typealias ObjectWillChangePublisher = Combine.ObservableObjectPublisher
|
||||
@objc deinit
|
||||
}
|
||||
@_Concurrency.MainActor public struct M2Radio {
|
||||
}
|
||||
@ -887,6 +901,10 @@ public enum M2VideoStatus {
|
||||
@_Concurrency.MainActor public static func checkStatus(trackID: Swift.String) -> M2Kit.M2VideoStatus
|
||||
@_Concurrency.MainActor public static func deleteDataOf(trackID: Swift.String)
|
||||
@_Concurrency.MainActor public static func filePathOf(trackID: Swift.String) -> Swift.String
|
||||
@_Concurrency.MainActor public static var enableWorkForInCellularNetwork: Swift.Bool {
|
||||
get
|
||||
set
|
||||
}
|
||||
}
|
||||
extension M2Kit.M2Utils {
|
||||
@_Concurrency.MainActor public static var countryCode: Swift.String {
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -1,7 +1,8 @@
|
||||
// swift-interface-format-version: 1.0
|
||||
// swift-compiler-version: Apple Swift version 6.3 effective-5.10 (swiftlang-6.3.0.123.5 clang-2100.0.123.102)
|
||||
// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101)
|
||||
// swift-module-flags: -target x86_64-apple-ios16.0-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3
|
||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3.3
|
||||
import AVFoundation
|
||||
import Combine
|
||||
import CommonCrypto
|
||||
import Foundation
|
||||
@ -536,15 +537,28 @@ public enum M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
}
|
||||
@_Concurrency.MainActor public struct M2NetMonitor {
|
||||
@_Concurrency.MainActor public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||
@_Concurrency.MainActor public var isConnected: Swift.Bool {
|
||||
@_hasMissingDesignatedInitializers @_Concurrency.MainActor final public class M2NetMonitor : Foundation.ObservableObject {
|
||||
@_Concurrency.MainActor public static let shared: M2Kit.M2NetMonitor
|
||||
@Combine.Published<Swift.Bool> @_projectedValueProperty($isConnected) @_Concurrency.MainActor final public var isConnected: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
@_Concurrency.MainActor final public var $isConnected: Combine.Published<Swift.Bool>.Publisher {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public func stop()
|
||||
@Combine.Published<M2Kit.M2NetConnecttionType> @_projectedValueProperty($connectionType) @_Concurrency.MainActor final public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor final public var $connectionType: Combine.Published<M2Kit.M2NetConnecttionType>.Publisher {
|
||||
get
|
||||
}
|
||||
@Combine.Published<Swift.Bool> @_projectedValueProperty($isReady) @_Concurrency.MainActor final public var isReady: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor final public var $isReady: Combine.Published<Swift.Bool>.Publisher {
|
||||
get
|
||||
}
|
||||
public typealias ObjectWillChangePublisher = Combine.ObservableObjectPublisher
|
||||
@objc deinit
|
||||
}
|
||||
@_Concurrency.MainActor public struct M2Radio {
|
||||
}
|
||||
@ -887,6 +901,10 @@ public enum M2VideoStatus {
|
||||
@_Concurrency.MainActor public static func checkStatus(trackID: Swift.String) -> M2Kit.M2VideoStatus
|
||||
@_Concurrency.MainActor public static func deleteDataOf(trackID: Swift.String)
|
||||
@_Concurrency.MainActor public static func filePathOf(trackID: Swift.String) -> Swift.String
|
||||
@_Concurrency.MainActor public static var enableWorkForInCellularNetwork: Swift.Bool {
|
||||
get
|
||||
set
|
||||
}
|
||||
}
|
||||
extension M2Kit.M2Utils {
|
||||
@_Concurrency.MainActor public static var countryCode: Swift.String {
|
||||
|
||||
Binary file not shown.
@ -1,7 +1,8 @@
|
||||
// swift-interface-format-version: 1.0
|
||||
// swift-compiler-version: Apple Swift version 6.3 effective-5.10 (swiftlang-6.3.0.123.5 clang-2100.0.123.102)
|
||||
// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101)
|
||||
// swift-module-flags: -target x86_64-apple-ios16.0-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3
|
||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3.3
|
||||
import AVFoundation
|
||||
import Combine
|
||||
import CommonCrypto
|
||||
import Foundation
|
||||
@ -536,15 +537,28 @@ public enum M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
}
|
||||
@_Concurrency.MainActor public struct M2NetMonitor {
|
||||
@_Concurrency.MainActor public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||
@_Concurrency.MainActor public var isConnected: Swift.Bool {
|
||||
@_hasMissingDesignatedInitializers @_Concurrency.MainActor final public class M2NetMonitor : Foundation.ObservableObject {
|
||||
@_Concurrency.MainActor public static let shared: M2Kit.M2NetMonitor
|
||||
@Combine.Published<Swift.Bool> @_projectedValueProperty($isConnected) @_Concurrency.MainActor final public var isConnected: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
@_Concurrency.MainActor final public var $isConnected: Combine.Published<Swift.Bool>.Publisher {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public func stop()
|
||||
@Combine.Published<M2Kit.M2NetConnecttionType> @_projectedValueProperty($connectionType) @_Concurrency.MainActor final public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor final public var $connectionType: Combine.Published<M2Kit.M2NetConnecttionType>.Publisher {
|
||||
get
|
||||
}
|
||||
@Combine.Published<Swift.Bool> @_projectedValueProperty($isReady) @_Concurrency.MainActor final public var isReady: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor final public var $isReady: Combine.Published<Swift.Bool>.Publisher {
|
||||
get
|
||||
}
|
||||
public typealias ObjectWillChangePublisher = Combine.ObservableObjectPublisher
|
||||
@objc deinit
|
||||
}
|
||||
@_Concurrency.MainActor public struct M2Radio {
|
||||
}
|
||||
@ -887,6 +901,10 @@ public enum M2VideoStatus {
|
||||
@_Concurrency.MainActor public static func checkStatus(trackID: Swift.String) -> M2Kit.M2VideoStatus
|
||||
@_Concurrency.MainActor public static func deleteDataOf(trackID: Swift.String)
|
||||
@_Concurrency.MainActor public static func filePathOf(trackID: Swift.String) -> Swift.String
|
||||
@_Concurrency.MainActor public static var enableWorkForInCellularNetwork: Swift.Bool {
|
||||
get
|
||||
set
|
||||
}
|
||||
}
|
||||
extension M2Kit.M2Utils {
|
||||
@_Concurrency.MainActor public static var countryCode: Swift.String {
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildMachineOSBuild</key>
|
||||
<string>25E246</string>
|
||||
<string>25F80</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>en</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
@ -17,7 +17,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>5.30</string>
|
||||
<string>5.36</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
@ -27,19 +27,19 @@
|
||||
<key>DTCompiler</key>
|
||||
<string>com.apple.compilers.llvm.clang.1_0</string>
|
||||
<key>DTPlatformBuild</key>
|
||||
<string>25E236</string>
|
||||
<string>25F70</string>
|
||||
<key>DTPlatformName</key>
|
||||
<string>macosx</string>
|
||||
<key>DTPlatformVersion</key>
|
||||
<string>26.4</string>
|
||||
<string>26.5</string>
|
||||
<key>DTSDKBuild</key>
|
||||
<string>25E236</string>
|
||||
<string>25F70</string>
|
||||
<key>DTSDKName</key>
|
||||
<string>macosx26.4</string>
|
||||
<string>macosx26.5</string>
|
||||
<key>DTXcode</key>
|
||||
<string>2640</string>
|
||||
<string>2660</string>
|
||||
<key>DTXcodeBuild</key>
|
||||
<string>17E192</string>
|
||||
<string>17F113</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
<string>13.0</string>
|
||||
<key>UIDeviceFamily</key>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
#if 0
|
||||
#elif defined(__arm64__) && __arm64__
|
||||
// Generated by Apple Swift version 6.3 effective-5.10 (swiftlang-6.3.0.123.5 clang-2100.0.123.102)
|
||||
// Generated by Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101)
|
||||
#ifndef M2KIT_SWIFT_H
|
||||
#define M2KIT_SWIFT_H
|
||||
#pragma clang diagnostic push
|
||||
@ -389,7 +389,7 @@ SWIFT_CLASS("_TtC5M2Kit7M2WebVC")
|
||||
#endif
|
||||
|
||||
#elif defined(__x86_64__) && __x86_64__
|
||||
// Generated by Apple Swift version 6.3 effective-5.10 (swiftlang-6.3.0.123.5 clang-2100.0.123.102)
|
||||
// Generated by Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101)
|
||||
#ifndef M2KIT_SWIFT_H
|
||||
#define M2KIT_SWIFT_H
|
||||
#pragma clang diagnostic push
|
||||
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -1,7 +1,8 @@
|
||||
// swift-interface-format-version: 1.0
|
||||
// swift-compiler-version: Apple Swift version 6.3 effective-5.10 (swiftlang-6.3.0.123.5 clang-2100.0.123.102)
|
||||
// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101)
|
||||
// swift-module-flags: -target arm64-apple-ios16.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3
|
||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3.3
|
||||
import AVFoundation
|
||||
import Combine
|
||||
import CommonCrypto
|
||||
import Foundation
|
||||
@ -536,15 +537,28 @@ public enum M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
}
|
||||
@_Concurrency.MainActor public struct M2NetMonitor {
|
||||
@_Concurrency.MainActor public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||
@_Concurrency.MainActor public var isConnected: Swift.Bool {
|
||||
@_hasMissingDesignatedInitializers @_Concurrency.MainActor final public class M2NetMonitor : Foundation.ObservableObject {
|
||||
@_Concurrency.MainActor public static let shared: M2Kit.M2NetMonitor
|
||||
@Combine.Published<Swift.Bool> @_projectedValueProperty($isConnected) @_Concurrency.MainActor final public var isConnected: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
@_Concurrency.MainActor final public var $isConnected: Combine.Published<Swift.Bool>.Publisher {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public func stop()
|
||||
@Combine.Published<M2Kit.M2NetConnecttionType> @_projectedValueProperty($connectionType) @_Concurrency.MainActor final public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor final public var $connectionType: Combine.Published<M2Kit.M2NetConnecttionType>.Publisher {
|
||||
get
|
||||
}
|
||||
@Combine.Published<Swift.Bool> @_projectedValueProperty($isReady) @_Concurrency.MainActor final public var isReady: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor final public var $isReady: Combine.Published<Swift.Bool>.Publisher {
|
||||
get
|
||||
}
|
||||
public typealias ObjectWillChangePublisher = Combine.ObservableObjectPublisher
|
||||
@objc deinit
|
||||
}
|
||||
@_Concurrency.MainActor public struct M2Radio {
|
||||
}
|
||||
@ -887,6 +901,10 @@ public enum M2VideoStatus {
|
||||
@_Concurrency.MainActor public static func checkStatus(trackID: Swift.String) -> M2Kit.M2VideoStatus
|
||||
@_Concurrency.MainActor public static func deleteDataOf(trackID: Swift.String)
|
||||
@_Concurrency.MainActor public static func filePathOf(trackID: Swift.String) -> Swift.String
|
||||
@_Concurrency.MainActor public static var enableWorkForInCellularNetwork: Swift.Bool {
|
||||
get
|
||||
set
|
||||
}
|
||||
}
|
||||
extension M2Kit.M2Utils {
|
||||
@_Concurrency.MainActor public static var countryCode: Swift.String {
|
||||
|
||||
Binary file not shown.
@ -1,7 +1,8 @@
|
||||
// swift-interface-format-version: 1.0
|
||||
// swift-compiler-version: Apple Swift version 6.3 effective-5.10 (swiftlang-6.3.0.123.5 clang-2100.0.123.102)
|
||||
// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101)
|
||||
// swift-module-flags: -target arm64-apple-ios16.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3
|
||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3.3
|
||||
import AVFoundation
|
||||
import Combine
|
||||
import CommonCrypto
|
||||
import Foundation
|
||||
@ -536,15 +537,28 @@ public enum M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
}
|
||||
@_Concurrency.MainActor public struct M2NetMonitor {
|
||||
@_Concurrency.MainActor public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||
@_Concurrency.MainActor public var isConnected: Swift.Bool {
|
||||
@_hasMissingDesignatedInitializers @_Concurrency.MainActor final public class M2NetMonitor : Foundation.ObservableObject {
|
||||
@_Concurrency.MainActor public static let shared: M2Kit.M2NetMonitor
|
||||
@Combine.Published<Swift.Bool> @_projectedValueProperty($isConnected) @_Concurrency.MainActor final public var isConnected: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
@_Concurrency.MainActor final public var $isConnected: Combine.Published<Swift.Bool>.Publisher {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public func stop()
|
||||
@Combine.Published<M2Kit.M2NetConnecttionType> @_projectedValueProperty($connectionType) @_Concurrency.MainActor final public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor final public var $connectionType: Combine.Published<M2Kit.M2NetConnecttionType>.Publisher {
|
||||
get
|
||||
}
|
||||
@Combine.Published<Swift.Bool> @_projectedValueProperty($isReady) @_Concurrency.MainActor final public var isReady: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor final public var $isReady: Combine.Published<Swift.Bool>.Publisher {
|
||||
get
|
||||
}
|
||||
public typealias ObjectWillChangePublisher = Combine.ObservableObjectPublisher
|
||||
@objc deinit
|
||||
}
|
||||
@_Concurrency.MainActor public struct M2Radio {
|
||||
}
|
||||
@ -887,6 +901,10 @@ public enum M2VideoStatus {
|
||||
@_Concurrency.MainActor public static func checkStatus(trackID: Swift.String) -> M2Kit.M2VideoStatus
|
||||
@_Concurrency.MainActor public static func deleteDataOf(trackID: Swift.String)
|
||||
@_Concurrency.MainActor public static func filePathOf(trackID: Swift.String) -> Swift.String
|
||||
@_Concurrency.MainActor public static var enableWorkForInCellularNetwork: Swift.Bool {
|
||||
get
|
||||
set
|
||||
}
|
||||
}
|
||||
extension M2Kit.M2Utils {
|
||||
@_Concurrency.MainActor public static var countryCode: Swift.String {
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -1,7 +1,8 @@
|
||||
// swift-interface-format-version: 1.0
|
||||
// swift-compiler-version: Apple Swift version 6.3 effective-5.10 (swiftlang-6.3.0.123.5 clang-2100.0.123.102)
|
||||
// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101)
|
||||
// swift-module-flags: -target x86_64-apple-ios16.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3
|
||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3.3
|
||||
import AVFoundation
|
||||
import Combine
|
||||
import CommonCrypto
|
||||
import Foundation
|
||||
@ -536,15 +537,28 @@ public enum M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
}
|
||||
@_Concurrency.MainActor public struct M2NetMonitor {
|
||||
@_Concurrency.MainActor public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||
@_Concurrency.MainActor public var isConnected: Swift.Bool {
|
||||
@_hasMissingDesignatedInitializers @_Concurrency.MainActor final public class M2NetMonitor : Foundation.ObservableObject {
|
||||
@_Concurrency.MainActor public static let shared: M2Kit.M2NetMonitor
|
||||
@Combine.Published<Swift.Bool> @_projectedValueProperty($isConnected) @_Concurrency.MainActor final public var isConnected: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
@_Concurrency.MainActor final public var $isConnected: Combine.Published<Swift.Bool>.Publisher {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public func stop()
|
||||
@Combine.Published<M2Kit.M2NetConnecttionType> @_projectedValueProperty($connectionType) @_Concurrency.MainActor final public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor final public var $connectionType: Combine.Published<M2Kit.M2NetConnecttionType>.Publisher {
|
||||
get
|
||||
}
|
||||
@Combine.Published<Swift.Bool> @_projectedValueProperty($isReady) @_Concurrency.MainActor final public var isReady: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor final public var $isReady: Combine.Published<Swift.Bool>.Publisher {
|
||||
get
|
||||
}
|
||||
public typealias ObjectWillChangePublisher = Combine.ObservableObjectPublisher
|
||||
@objc deinit
|
||||
}
|
||||
@_Concurrency.MainActor public struct M2Radio {
|
||||
}
|
||||
@ -887,6 +901,10 @@ public enum M2VideoStatus {
|
||||
@_Concurrency.MainActor public static func checkStatus(trackID: Swift.String) -> M2Kit.M2VideoStatus
|
||||
@_Concurrency.MainActor public static func deleteDataOf(trackID: Swift.String)
|
||||
@_Concurrency.MainActor public static func filePathOf(trackID: Swift.String) -> Swift.String
|
||||
@_Concurrency.MainActor public static var enableWorkForInCellularNetwork: Swift.Bool {
|
||||
get
|
||||
set
|
||||
}
|
||||
}
|
||||
extension M2Kit.M2Utils {
|
||||
@_Concurrency.MainActor public static var countryCode: Swift.String {
|
||||
|
||||
Binary file not shown.
@ -1,7 +1,8 @@
|
||||
// swift-interface-format-version: 1.0
|
||||
// swift-compiler-version: Apple Swift version 6.3 effective-5.10 (swiftlang-6.3.0.123.5 clang-2100.0.123.102)
|
||||
// swift-compiler-version: Apple Swift version 6.3.3 effective-5.10 (swiftlang-6.3.3.1.3 clang-2100.1.1.101)
|
||||
// swift-module-flags: -target x86_64-apple-ios16.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -O -enable-experimental-feature DebugDescriptionMacro -enable-bare-slash-regex -module-name M2Kit
|
||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3
|
||||
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -formal-cxx-interoperability-mode=off -interface-compiler-version 6.3.3
|
||||
import AVFoundation
|
||||
import Combine
|
||||
import CommonCrypto
|
||||
import Foundation
|
||||
@ -536,15 +537,28 @@ public enum M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
}
|
||||
@_Concurrency.MainActor public struct M2NetMonitor {
|
||||
@_Concurrency.MainActor public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||
@_Concurrency.MainActor public var isConnected: Swift.Bool {
|
||||
@_hasMissingDesignatedInitializers @_Concurrency.MainActor final public class M2NetMonitor : Foundation.ObservableObject {
|
||||
@_Concurrency.MainActor public static let shared: M2Kit.M2NetMonitor
|
||||
@Combine.Published<Swift.Bool> @_projectedValueProperty($isConnected) @_Concurrency.MainActor final public var isConnected: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
@_Concurrency.MainActor final public var $isConnected: Combine.Published<Swift.Bool>.Publisher {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public func stop()
|
||||
@Combine.Published<M2Kit.M2NetConnecttionType> @_projectedValueProperty($connectionType) @_Concurrency.MainActor final public var connectionType: M2Kit.M2NetConnecttionType {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor final public var $connectionType: Combine.Published<M2Kit.M2NetConnecttionType>.Publisher {
|
||||
get
|
||||
}
|
||||
@Combine.Published<Swift.Bool> @_projectedValueProperty($isReady) @_Concurrency.MainActor final public var isReady: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor final public var $isReady: Combine.Published<Swift.Bool>.Publisher {
|
||||
get
|
||||
}
|
||||
public typealias ObjectWillChangePublisher = Combine.ObservableObjectPublisher
|
||||
@objc deinit
|
||||
}
|
||||
@_Concurrency.MainActor public struct M2Radio {
|
||||
}
|
||||
@ -887,6 +901,10 @@ public enum M2VideoStatus {
|
||||
@_Concurrency.MainActor public static func checkStatus(trackID: Swift.String) -> M2Kit.M2VideoStatus
|
||||
@_Concurrency.MainActor public static func deleteDataOf(trackID: Swift.String)
|
||||
@_Concurrency.MainActor public static func filePathOf(trackID: Swift.String) -> Swift.String
|
||||
@_Concurrency.MainActor public static var enableWorkForInCellularNetwork: Swift.Bool {
|
||||
get
|
||||
set
|
||||
}
|
||||
}
|
||||
extension M2Kit.M2Utils {
|
||||
@_Concurrency.MainActor public static var countryCode: Swift.String {
|
||||
|
||||
Binary file not shown.
@ -6,51 +6,51 @@
|
||||
<dict>
|
||||
<key>Headers/M2Kit-Swift.h</key>
|
||||
<data>
|
||||
G87QDktdLeer7xOMLZ8+9d7isv4=
|
||||
5l6juoiZCwewcWEb8quzyP23EIk=
|
||||
</data>
|
||||
<key>Info.plist</key>
|
||||
<data>
|
||||
SleqPxws2MeF18s7bAsi3b3gAdA=
|
||||
WEaTXSgP3lwvKkhQqczSqK0yxPY=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
|
||||
<data>
|
||||
6wkkxfr7gSUxduDCHu2XUVH5mqs=
|
||||
QeTXsC9yosyQ9X+YFk+a2r/y42I=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
||||
<data>
|
||||
C/DjXP+39RGzyGp+6hnph2T7Ggw=
|
||||
Xqs8pdYOosfUq4w2gfRosOnPID0=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
||||
<data>
|
||||
SSvr+y6ZXqMXP0bAmn52kfYSuro=
|
||||
t7hju5Q2fTz/8pzSFCcH2W1Hb2s=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
||||
<data>
|
||||
C/DjXP+39RGzyGp+6hnph2T7Ggw=
|
||||
Xqs8pdYOosfUq4w2gfRosOnPID0=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
||||
<data>
|
||||
cWuVEwkHgiZ0wKbkz+bXgtOBEdA=
|
||||
7lwg246ETTWbvojdUGf3/1bIsLU=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
||||
<data>
|
||||
6wkkxfr7gSUxduDCHu2XUVH5mqs=
|
||||
QeTXsC9yosyQ9X+YFk+a2r/y42I=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
||||
<data>
|
||||
67ufZbetgqCIouQgOoHeefyuiQQ=
|
||||
r/b5me54Y0V8jt1yqVcJXrJPk6w=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
|
||||
<data>
|
||||
84PRDHxrcuTPrlyUgPuYSCrpbwY=
|
||||
ARr2JooJDNFvtN5YiXdQEpbjr2I=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
|
||||
<data>
|
||||
67ufZbetgqCIouQgOoHeefyuiQQ=
|
||||
r/b5me54Y0V8jt1yqVcJXrJPk6w=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
|
||||
<data>
|
||||
ljizTtjU6acR99o0hwhP7CmGb80=
|
||||
xC50OgUSm57IvVoK1q9fC1sXA08=
|
||||
</data>
|
||||
<key>Modules/module.modulemap</key>
|
||||
<data>
|
||||
@ -63,77 +63,77 @@
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
FTD974xn8GZrFCSw8Z3aSPQAfU6VQDFvfugYeGsFSJ4=
|
||||
kzJbTMiNG/8AwCCKuJBbuRHa207TWEDBYpIa4QK/FuM=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
IAGovL5skq6thn7aV3Nt5WDxbdiYaNYM9erID2rAHV0=
|
||||
cgj+I5wEhrTXPKco/1hnOVOXKcOtfzok7IeH6w9lmAE=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
PiHJVcTXDiAQztXz878dXaDDnCuAizNqTdNlCyui6kM=
|
||||
l05wMw7rC2WukkJmQ2eNHD+GKtJ3cet5JvId2HlRRvs=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
qzDhJFekK+sg3z8wGfp187bHdDNpBCvLd67/j0J95m4=
|
||||
enffOo0+rfwtmjqAmfixCv8VRIDLj3jKHs1twjrUH90=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
PiHJVcTXDiAQztXz878dXaDDnCuAizNqTdNlCyui6kM=
|
||||
l05wMw7rC2WukkJmQ2eNHD+GKtJ3cet5JvId2HlRRvs=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
KFlMucW2Np1pbbENU443B7UYm1QT6eRw3cVc2P8sxT0=
|
||||
GaSMPMvfgj+b5jH17gC/ruq49YIk8q0BDcTkkJU+TzY=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
IAGovL5skq6thn7aV3Nt5WDxbdiYaNYM9erID2rAHV0=
|
||||
cgj+I5wEhrTXPKco/1hnOVOXKcOtfzok7IeH6w9lmAE=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
6qQNUJ8/hRlOVsRiC1a2bkXQZ70EVyxZk3YPhPQ1uIs=
|
||||
FYvG+RLiaPkWsh5KdXOsZ+UswwwKyJ6IoyKCqCIearE=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
/eVTjH/4exBgWDdqwH4+fbY1x4lBEmeuQdMv5P3zdIQ=
|
||||
qv1+sllWc6tfxZdD138EP/OJpco8Xwm1iPLMhU4L8iU=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
6qQNUJ8/hRlOVsRiC1a2bkXQZ70EVyxZk3YPhPQ1uIs=
|
||||
FYvG+RLiaPkWsh5KdXOsZ+UswwwKyJ6IoyKCqCIearE=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
xekHWLj2P7Pq7nzc+UO7lh0mTmos6pxVjh1UqxomKK8=
|
||||
jV7SGvRCtVUPJTtYwLz4Xm9LBFIqEtjLdhyV9ghsdqU=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/module.modulemap</key>
|
||||
|
||||
Reference in New Issue
Block a user