Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1db8869bb6 | |||
| 64da58b93a | |||
| 9414c887e4 |
@ -4,23 +4,6 @@
|
||||
<dict>
|
||||
<key>AvailableLibraries</key>
|
||||
<array>
|
||||
<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/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.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101)
|
||||
// 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,7 @@
|
||||
// swift-interface-format-version: 1.0
|
||||
// swift-compiler-version: Apple Swift version 6.3.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101)
|
||||
// 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.2
|
||||
// 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
|
||||
@ -537,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 {
|
||||
}
|
||||
@ -888,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,7 @@
|
||||
// swift-interface-format-version: 1.0
|
||||
// swift-compiler-version: Apple Swift version 6.3.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101)
|
||||
// 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.2
|
||||
// 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
|
||||
@ -537,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 {
|
||||
}
|
||||
@ -888,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.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101)
|
||||
// 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.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101)
|
||||
// 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,7 @@
|
||||
// swift-interface-format-version: 1.0
|
||||
// swift-compiler-version: Apple Swift version 6.3.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101)
|
||||
// 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.2
|
||||
// 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
|
||||
@ -537,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 {
|
||||
}
|
||||
@ -888,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,7 @@
|
||||
// swift-interface-format-version: 1.0
|
||||
// swift-compiler-version: Apple Swift version 6.3.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101)
|
||||
// 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.2
|
||||
// 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
|
||||
@ -537,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 {
|
||||
}
|
||||
@ -888,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,7 @@
|
||||
// swift-interface-format-version: 1.0
|
||||
// swift-compiler-version: Apple Swift version 6.3.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101)
|
||||
// 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.2
|
||||
// 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
|
||||
@ -537,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 {
|
||||
}
|
||||
@ -888,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,7 @@
|
||||
// swift-interface-format-version: 1.0
|
||||
// swift-compiler-version: Apple Swift version 6.3.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101)
|
||||
// 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.2
|
||||
// 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
|
||||
@ -537,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 {
|
||||
}
|
||||
@ -888,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>25F71</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.33</string>
|
||||
<string>5.36</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
@ -37,9 +37,9 @@
|
||||
<key>DTSDKName</key>
|
||||
<string>macosx26.5</string>
|
||||
<key>DTXcode</key>
|
||||
<string>2650</string>
|
||||
<string>2660</string>
|
||||
<key>DTXcodeBuild</key>
|
||||
<string>17F42</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.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101)
|
||||
// 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.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101)
|
||||
// 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,7 @@
|
||||
// swift-interface-format-version: 1.0
|
||||
// swift-compiler-version: Apple Swift version 6.3.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101)
|
||||
// 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.2
|
||||
// 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
|
||||
@ -537,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 {
|
||||
}
|
||||
@ -888,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,7 @@
|
||||
// swift-interface-format-version: 1.0
|
||||
// swift-compiler-version: Apple Swift version 6.3.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101)
|
||||
// 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.2
|
||||
// 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
|
||||
@ -537,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 {
|
||||
}
|
||||
@ -888,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,7 @@
|
||||
// swift-interface-format-version: 1.0
|
||||
// swift-compiler-version: Apple Swift version 6.3.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101)
|
||||
// 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.2
|
||||
// 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
|
||||
@ -537,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 {
|
||||
}
|
||||
@ -888,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,7 @@
|
||||
// swift-interface-format-version: 1.0
|
||||
// swift-compiler-version: Apple Swift version 6.3.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101)
|
||||
// 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.2
|
||||
// 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
|
||||
@ -537,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 {
|
||||
}
|
||||
@ -888,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>
|
||||
kmG9FyD9DX6qXcD4xPSiHdPdJno=
|
||||
5l6juoiZCwewcWEb8quzyP23EIk=
|
||||
</data>
|
||||
<key>Info.plist</key>
|
||||
<data>
|
||||
NfMHTwqgDBTtRj4sD6b1xR3sNP4=
|
||||
WEaTXSgP3lwvKkhQqczSqK0yxPY=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
|
||||
<data>
|
||||
uoOLDkR6vB0AeZ5BmLIzjqzIr4o=
|
||||
QeTXsC9yosyQ9X+YFk+a2r/y42I=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
||||
<data>
|
||||
5sV9ST5PvM1vUAWG81tv+P3XibI=
|
||||
Xqs8pdYOosfUq4w2gfRosOnPID0=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
||||
<data>
|
||||
S9OsWJUQD1hEJGWTQaX8blYkrGc=
|
||||
t7hju5Q2fTz/8pzSFCcH2W1Hb2s=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
||||
<data>
|
||||
5sV9ST5PvM1vUAWG81tv+P3XibI=
|
||||
Xqs8pdYOosfUq4w2gfRosOnPID0=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
||||
<data>
|
||||
w4wQ2BV2KUh/ShRBim44Ipphs6Q=
|
||||
7lwg246ETTWbvojdUGf3/1bIsLU=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
||||
<data>
|
||||
uoOLDkR6vB0AeZ5BmLIzjqzIr4o=
|
||||
QeTXsC9yosyQ9X+YFk+a2r/y42I=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
||||
<data>
|
||||
pxKt6HpTwry7qw5k/SvavxYlDIk=
|
||||
r/b5me54Y0V8jt1yqVcJXrJPk6w=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
|
||||
<data>
|
||||
jK7v8hdpcUDe+oT6qlP+LLeC6IA=
|
||||
ARr2JooJDNFvtN5YiXdQEpbjr2I=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
|
||||
<data>
|
||||
pxKt6HpTwry7qw5k/SvavxYlDIk=
|
||||
r/b5me54Y0V8jt1yqVcJXrJPk6w=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
|
||||
<data>
|
||||
xmy+av058wGGp0E3hdgjrDEkxac=
|
||||
xC50OgUSm57IvVoK1q9fC1sXA08=
|
||||
</data>
|
||||
<key>Modules/module.modulemap</key>
|
||||
<data>
|
||||
@ -63,77 +63,77 @@
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
3evUDBP/zWRzYV+plW5UscRxYX/JefrPAAkcJBYkCC0=
|
||||
kzJbTMiNG/8AwCCKuJBbuRHa207TWEDBYpIa4QK/FuM=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
WJ4GPsT+g3lR2tVa8Kg+yo1PEUszQyfetZXD+b7jwEc=
|
||||
cgj+I5wEhrTXPKco/1hnOVOXKcOtfzok7IeH6w9lmAE=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
JcLskbl1EF3whhLrSuxtLszpnCec1EI40i+/E4VXdRY=
|
||||
l05wMw7rC2WukkJmQ2eNHD+GKtJ3cet5JvId2HlRRvs=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
uAT9a3g3MJTMtQ7sftLak3vUNNfZf+A85/ZxU1IXW/g=
|
||||
enffOo0+rfwtmjqAmfixCv8VRIDLj3jKHs1twjrUH90=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
JcLskbl1EF3whhLrSuxtLszpnCec1EI40i+/E4VXdRY=
|
||||
l05wMw7rC2WukkJmQ2eNHD+GKtJ3cet5JvId2HlRRvs=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
l2rmJrV6ZHjuZFd4dENU+HEAEAskPqgGgXA/hs+HQmk=
|
||||
GaSMPMvfgj+b5jH17gC/ruq49YIk8q0BDcTkkJU+TzY=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
WJ4GPsT+g3lR2tVa8Kg+yo1PEUszQyfetZXD+b7jwEc=
|
||||
cgj+I5wEhrTXPKco/1hnOVOXKcOtfzok7IeH6w9lmAE=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
xe8+e4yJbAY3LD3Q49dHSCRB3IUuHkm0IQ3l6kvE2cg=
|
||||
FYvG+RLiaPkWsh5KdXOsZ+UswwwKyJ6IoyKCqCIearE=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
IqxkHSi13uvRbjPTExbZYmIViVLJRKvDO1oi2+WA/D4=
|
||||
qv1+sllWc6tfxZdD138EP/OJpco8Xwm1iPLMhU4L8iU=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
xe8+e4yJbAY3LD3Q49dHSCRB3IUuHkm0IQ3l6kvE2cg=
|
||||
FYvG+RLiaPkWsh5KdXOsZ+UswwwKyJ6IoyKCqCIearE=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
oRYLbNvo9gdpnLmE2oSAFq5JqRi1tgo6uvAMjZbhy+E=
|
||||
jV7SGvRCtVUPJTtYwLz4Xm9LBFIqEtjLdhyV9ghsdqU=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/module.modulemap</key>
|
||||
|
||||
Reference in New Issue
Block a user