Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8a825c7e97 | |||
| 2370cffc13 |
@ -21,6 +21,20 @@
|
|||||||
<key>SupportedPlatformVariant</key>
|
<key>SupportedPlatformVariant</key>
|
||||||
<string>maccatalyst</string>
|
<string>maccatalyst</string>
|
||||||
</dict>
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>BinaryPath</key>
|
||||||
|
<string>M2Kit.framework/M2Kit</string>
|
||||||
|
<key>LibraryIdentifier</key>
|
||||||
|
<string>ios-arm64</string>
|
||||||
|
<key>LibraryPath</key>
|
||||||
|
<string>M2Kit.framework</string>
|
||||||
|
<key>SupportedArchitectures</key>
|
||||||
|
<array>
|
||||||
|
<string>arm64</string>
|
||||||
|
</array>
|
||||||
|
<key>SupportedPlatform</key>
|
||||||
|
<string>ios</string>
|
||||||
|
</dict>
|
||||||
<dict>
|
<dict>
|
||||||
<key>BinaryPath</key>
|
<key>BinaryPath</key>
|
||||||
<string>M2Kit.framework/M2Kit</string>
|
<string>M2Kit.framework/M2Kit</string>
|
||||||
@ -38,20 +52,6 @@
|
|||||||
<key>SupportedPlatformVariant</key>
|
<key>SupportedPlatformVariant</key>
|
||||||
<string>simulator</string>
|
<string>simulator</string>
|
||||||
</dict>
|
</dict>
|
||||||
<dict>
|
|
||||||
<key>BinaryPath</key>
|
|
||||||
<string>M2Kit.framework/M2Kit</string>
|
|
||||||
<key>LibraryIdentifier</key>
|
|
||||||
<string>ios-arm64</string>
|
|
||||||
<key>LibraryPath</key>
|
|
||||||
<string>M2Kit.framework</string>
|
|
||||||
<key>SupportedArchitectures</key>
|
|
||||||
<array>
|
|
||||||
<string>arm64</string>
|
|
||||||
</array>
|
|
||||||
<key>SupportedPlatform</key>
|
|
||||||
<string>ios</string>
|
|
||||||
</dict>
|
|
||||||
</array>
|
</array>
|
||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>XFWK</string>
|
<string>XFWK</string>
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -148,11 +148,25 @@ public struct M2Musi {
|
|||||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public enum M2NetConnecttionType {
|
||||||
|
case wifi
|
||||||
|
case cellular
|
||||||
|
case other
|
||||||
|
case none
|
||||||
|
public static func == (a: M2Kit.M2NetConnecttionType, b: M2Kit.M2NetConnecttionType) -> Swift.Bool
|
||||||
|
public func hash(into hasher: inout Swift.Hasher)
|
||||||
|
public var hashValue: Swift.Int {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
}
|
||||||
public struct M2NetMonitor {
|
public struct M2NetMonitor {
|
||||||
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||||
public var isConnected: Swift.Bool {
|
public var isConnected: Swift.Bool {
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
|
public var connectionType: M2Kit.M2NetConnecttionType {
|
||||||
|
get
|
||||||
|
}
|
||||||
public func stop()
|
public func stop()
|
||||||
}
|
}
|
||||||
public struct M2Radio {
|
public struct M2Radio {
|
||||||
@ -510,4 +524,28 @@ extension M2Kit.M2Utils {
|
|||||||
public typealias Coordinator = Swift.Void
|
public typealias Coordinator = Swift.Void
|
||||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||||
}
|
}
|
||||||
|
public enum M2YTIDType : Swift.String {
|
||||||
|
case video
|
||||||
|
case playlist
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public init?(rawValue: Swift.String)
|
||||||
|
#endif
|
||||||
|
public typealias RawValue = Swift.String
|
||||||
|
public var rawValue: Swift.String {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public struct M2YT {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func extractId(fromUrl: Swift.String) -> (id: Swift.String, type: M2Kit.M2YTIDType)?
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getVideosOfPlaylistId(_ playlistId: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
extension M2Kit.M2NetConnecttionType : Swift.Equatable {}
|
||||||
|
extension M2Kit.M2NetConnecttionType : Swift.Hashable {}
|
||||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.Equatable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.Hashable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.RawRepresentable {}
|
||||||
|
|||||||
@ -148,11 +148,25 @@ public struct M2Musi {
|
|||||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public enum M2NetConnecttionType {
|
||||||
|
case wifi
|
||||||
|
case cellular
|
||||||
|
case other
|
||||||
|
case none
|
||||||
|
public static func == (a: M2Kit.M2NetConnecttionType, b: M2Kit.M2NetConnecttionType) -> Swift.Bool
|
||||||
|
public func hash(into hasher: inout Swift.Hasher)
|
||||||
|
public var hashValue: Swift.Int {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
}
|
||||||
public struct M2NetMonitor {
|
public struct M2NetMonitor {
|
||||||
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||||
public var isConnected: Swift.Bool {
|
public var isConnected: Swift.Bool {
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
|
public var connectionType: M2Kit.M2NetConnecttionType {
|
||||||
|
get
|
||||||
|
}
|
||||||
public func stop()
|
public func stop()
|
||||||
}
|
}
|
||||||
public struct M2Radio {
|
public struct M2Radio {
|
||||||
@ -510,4 +524,28 @@ extension M2Kit.M2Utils {
|
|||||||
public typealias Coordinator = Swift.Void
|
public typealias Coordinator = Swift.Void
|
||||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||||
}
|
}
|
||||||
|
public enum M2YTIDType : Swift.String {
|
||||||
|
case video
|
||||||
|
case playlist
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public init?(rawValue: Swift.String)
|
||||||
|
#endif
|
||||||
|
public typealias RawValue = Swift.String
|
||||||
|
public var rawValue: Swift.String {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public struct M2YT {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func extractId(fromUrl: Swift.String) -> (id: Swift.String, type: M2Kit.M2YTIDType)?
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getVideosOfPlaylistId(_ playlistId: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
extension M2Kit.M2NetConnecttionType : Swift.Equatable {}
|
||||||
|
extension M2Kit.M2NetConnecttionType : Swift.Hashable {}
|
||||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.Equatable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.Hashable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.RawRepresentable {}
|
||||||
|
|||||||
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -148,11 +148,25 @@ public struct M2Musi {
|
|||||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public enum M2NetConnecttionType {
|
||||||
|
case wifi
|
||||||
|
case cellular
|
||||||
|
case other
|
||||||
|
case none
|
||||||
|
public static func == (a: M2Kit.M2NetConnecttionType, b: M2Kit.M2NetConnecttionType) -> Swift.Bool
|
||||||
|
public func hash(into hasher: inout Swift.Hasher)
|
||||||
|
public var hashValue: Swift.Int {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
}
|
||||||
public struct M2NetMonitor {
|
public struct M2NetMonitor {
|
||||||
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||||
public var isConnected: Swift.Bool {
|
public var isConnected: Swift.Bool {
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
|
public var connectionType: M2Kit.M2NetConnecttionType {
|
||||||
|
get
|
||||||
|
}
|
||||||
public func stop()
|
public func stop()
|
||||||
}
|
}
|
||||||
public struct M2Radio {
|
public struct M2Radio {
|
||||||
@ -510,4 +524,28 @@ extension M2Kit.M2Utils {
|
|||||||
public typealias Coordinator = Swift.Void
|
public typealias Coordinator = Swift.Void
|
||||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||||
}
|
}
|
||||||
|
public enum M2YTIDType : Swift.String {
|
||||||
|
case video
|
||||||
|
case playlist
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public init?(rawValue: Swift.String)
|
||||||
|
#endif
|
||||||
|
public typealias RawValue = Swift.String
|
||||||
|
public var rawValue: Swift.String {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public struct M2YT {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func extractId(fromUrl: Swift.String) -> (id: Swift.String, type: M2Kit.M2YTIDType)?
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getVideosOfPlaylistId(_ playlistId: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
extension M2Kit.M2NetConnecttionType : Swift.Equatable {}
|
||||||
|
extension M2Kit.M2NetConnecttionType : Swift.Hashable {}
|
||||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.Equatable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.Hashable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.RawRepresentable {}
|
||||||
|
|||||||
@ -148,11 +148,25 @@ public struct M2Musi {
|
|||||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public enum M2NetConnecttionType {
|
||||||
|
case wifi
|
||||||
|
case cellular
|
||||||
|
case other
|
||||||
|
case none
|
||||||
|
public static func == (a: M2Kit.M2NetConnecttionType, b: M2Kit.M2NetConnecttionType) -> Swift.Bool
|
||||||
|
public func hash(into hasher: inout Swift.Hasher)
|
||||||
|
public var hashValue: Swift.Int {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
}
|
||||||
public struct M2NetMonitor {
|
public struct M2NetMonitor {
|
||||||
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||||
public var isConnected: Swift.Bool {
|
public var isConnected: Swift.Bool {
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
|
public var connectionType: M2Kit.M2NetConnecttionType {
|
||||||
|
get
|
||||||
|
}
|
||||||
public func stop()
|
public func stop()
|
||||||
}
|
}
|
||||||
public struct M2Radio {
|
public struct M2Radio {
|
||||||
@ -510,4 +524,28 @@ extension M2Kit.M2Utils {
|
|||||||
public typealias Coordinator = Swift.Void
|
public typealias Coordinator = Swift.Void
|
||||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||||
}
|
}
|
||||||
|
public enum M2YTIDType : Swift.String {
|
||||||
|
case video
|
||||||
|
case playlist
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public init?(rawValue: Swift.String)
|
||||||
|
#endif
|
||||||
|
public typealias RawValue = Swift.String
|
||||||
|
public var rawValue: Swift.String {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public struct M2YT {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func extractId(fromUrl: Swift.String) -> (id: Swift.String, type: M2Kit.M2YTIDType)?
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getVideosOfPlaylistId(_ playlistId: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
extension M2Kit.M2NetConnecttionType : Swift.Equatable {}
|
||||||
|
extension M2Kit.M2NetConnecttionType : Swift.Hashable {}
|
||||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.Equatable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.Hashable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.RawRepresentable {}
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@ -148,11 +148,25 @@ public struct M2Musi {
|
|||||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public enum M2NetConnecttionType {
|
||||||
|
case wifi
|
||||||
|
case cellular
|
||||||
|
case other
|
||||||
|
case none
|
||||||
|
public static func == (a: M2Kit.M2NetConnecttionType, b: M2Kit.M2NetConnecttionType) -> Swift.Bool
|
||||||
|
public func hash(into hasher: inout Swift.Hasher)
|
||||||
|
public var hashValue: Swift.Int {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
}
|
||||||
public struct M2NetMonitor {
|
public struct M2NetMonitor {
|
||||||
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||||
public var isConnected: Swift.Bool {
|
public var isConnected: Swift.Bool {
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
|
public var connectionType: M2Kit.M2NetConnecttionType {
|
||||||
|
get
|
||||||
|
}
|
||||||
public func stop()
|
public func stop()
|
||||||
}
|
}
|
||||||
public struct M2Radio {
|
public struct M2Radio {
|
||||||
@ -510,4 +524,28 @@ extension M2Kit.M2Utils {
|
|||||||
public typealias Coordinator = Swift.Void
|
public typealias Coordinator = Swift.Void
|
||||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||||
}
|
}
|
||||||
|
public enum M2YTIDType : Swift.String {
|
||||||
|
case video
|
||||||
|
case playlist
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public init?(rawValue: Swift.String)
|
||||||
|
#endif
|
||||||
|
public typealias RawValue = Swift.String
|
||||||
|
public var rawValue: Swift.String {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public struct M2YT {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func extractId(fromUrl: Swift.String) -> (id: Swift.String, type: M2Kit.M2YTIDType)?
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getVideosOfPlaylistId(_ playlistId: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
extension M2Kit.M2NetConnecttionType : Swift.Equatable {}
|
||||||
|
extension M2Kit.M2NetConnecttionType : Swift.Hashable {}
|
||||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.Equatable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.Hashable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.RawRepresentable {}
|
||||||
|
|||||||
@ -148,11 +148,25 @@ public struct M2Musi {
|
|||||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public enum M2NetConnecttionType {
|
||||||
|
case wifi
|
||||||
|
case cellular
|
||||||
|
case other
|
||||||
|
case none
|
||||||
|
public static func == (a: M2Kit.M2NetConnecttionType, b: M2Kit.M2NetConnecttionType) -> Swift.Bool
|
||||||
|
public func hash(into hasher: inout Swift.Hasher)
|
||||||
|
public var hashValue: Swift.Int {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
}
|
||||||
public struct M2NetMonitor {
|
public struct M2NetMonitor {
|
||||||
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||||
public var isConnected: Swift.Bool {
|
public var isConnected: Swift.Bool {
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
|
public var connectionType: M2Kit.M2NetConnecttionType {
|
||||||
|
get
|
||||||
|
}
|
||||||
public func stop()
|
public func stop()
|
||||||
}
|
}
|
||||||
public struct M2Radio {
|
public struct M2Radio {
|
||||||
@ -510,4 +524,28 @@ extension M2Kit.M2Utils {
|
|||||||
public typealias Coordinator = Swift.Void
|
public typealias Coordinator = Swift.Void
|
||||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||||
}
|
}
|
||||||
|
public enum M2YTIDType : Swift.String {
|
||||||
|
case video
|
||||||
|
case playlist
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public init?(rawValue: Swift.String)
|
||||||
|
#endif
|
||||||
|
public typealias RawValue = Swift.String
|
||||||
|
public var rawValue: Swift.String {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public struct M2YT {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func extractId(fromUrl: Swift.String) -> (id: Swift.String, type: M2Kit.M2YTIDType)?
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getVideosOfPlaylistId(_ playlistId: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
extension M2Kit.M2NetConnecttionType : Swift.Equatable {}
|
||||||
|
extension M2Kit.M2NetConnecttionType : Swift.Hashable {}
|
||||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.Equatable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.Hashable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.RawRepresentable {}
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
<plist version="1.0">
|
<plist version="1.0">
|
||||||
<dict>
|
<dict>
|
||||||
<key>BuildMachineOSBuild</key>
|
<key>BuildMachineOSBuild</key>
|
||||||
<string>25A354</string>
|
<string>25A362</string>
|
||||||
<key>CFBundleDevelopmentRegion</key>
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
<string>en</string>
|
<string>en</string>
|
||||||
<key>CFBundleExecutable</key>
|
<key>CFBundleExecutable</key>
|
||||||
@ -17,7 +17,7 @@
|
|||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>FMWK</string>
|
<string>FMWK</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>5.5</string>
|
<string>5.7</string>
|
||||||
<key>CFBundleSupportedPlatforms</key>
|
<key>CFBundleSupportedPlatforms</key>
|
||||||
<array>
|
<array>
|
||||||
<string>MacOSX</string>
|
<string>MacOSX</string>
|
||||||
@ -37,9 +37,9 @@
|
|||||||
<key>DTSDKName</key>
|
<key>DTSDKName</key>
|
||||||
<string>macosx26.0</string>
|
<string>macosx26.0</string>
|
||||||
<key>DTXcode</key>
|
<key>DTXcode</key>
|
||||||
<string>2600</string>
|
<string>2601</string>
|
||||||
<key>DTXcodeBuild</key>
|
<key>DTXcodeBuild</key>
|
||||||
<string>17A324</string>
|
<string>17A400</string>
|
||||||
<key>LSMinimumSystemVersion</key>
|
<key>LSMinimumSystemVersion</key>
|
||||||
<string>12.0</string>
|
<string>12.0</string>
|
||||||
<key>UIDeviceFamily</key>
|
<key>UIDeviceFamily</key>
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -148,11 +148,25 @@ public struct M2Musi {
|
|||||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public enum M2NetConnecttionType {
|
||||||
|
case wifi
|
||||||
|
case cellular
|
||||||
|
case other
|
||||||
|
case none
|
||||||
|
public static func == (a: M2Kit.M2NetConnecttionType, b: M2Kit.M2NetConnecttionType) -> Swift.Bool
|
||||||
|
public func hash(into hasher: inout Swift.Hasher)
|
||||||
|
public var hashValue: Swift.Int {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
}
|
||||||
public struct M2NetMonitor {
|
public struct M2NetMonitor {
|
||||||
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||||
public var isConnected: Swift.Bool {
|
public var isConnected: Swift.Bool {
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
|
public var connectionType: M2Kit.M2NetConnecttionType {
|
||||||
|
get
|
||||||
|
}
|
||||||
public func stop()
|
public func stop()
|
||||||
}
|
}
|
||||||
public struct M2Radio {
|
public struct M2Radio {
|
||||||
@ -510,4 +524,28 @@ extension M2Kit.M2Utils {
|
|||||||
public typealias Coordinator = Swift.Void
|
public typealias Coordinator = Swift.Void
|
||||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||||
}
|
}
|
||||||
|
public enum M2YTIDType : Swift.String {
|
||||||
|
case video
|
||||||
|
case playlist
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public init?(rawValue: Swift.String)
|
||||||
|
#endif
|
||||||
|
public typealias RawValue = Swift.String
|
||||||
|
public var rawValue: Swift.String {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public struct M2YT {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func extractId(fromUrl: Swift.String) -> (id: Swift.String, type: M2Kit.M2YTIDType)?
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getVideosOfPlaylistId(_ playlistId: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
extension M2Kit.M2NetConnecttionType : Swift.Equatable {}
|
||||||
|
extension M2Kit.M2NetConnecttionType : Swift.Hashable {}
|
||||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.Equatable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.Hashable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.RawRepresentable {}
|
||||||
|
|||||||
@ -148,11 +148,25 @@ public struct M2Musi {
|
|||||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public enum M2NetConnecttionType {
|
||||||
|
case wifi
|
||||||
|
case cellular
|
||||||
|
case other
|
||||||
|
case none
|
||||||
|
public static func == (a: M2Kit.M2NetConnecttionType, b: M2Kit.M2NetConnecttionType) -> Swift.Bool
|
||||||
|
public func hash(into hasher: inout Swift.Hasher)
|
||||||
|
public var hashValue: Swift.Int {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
}
|
||||||
public struct M2NetMonitor {
|
public struct M2NetMonitor {
|
||||||
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||||
public var isConnected: Swift.Bool {
|
public var isConnected: Swift.Bool {
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
|
public var connectionType: M2Kit.M2NetConnecttionType {
|
||||||
|
get
|
||||||
|
}
|
||||||
public func stop()
|
public func stop()
|
||||||
}
|
}
|
||||||
public struct M2Radio {
|
public struct M2Radio {
|
||||||
@ -510,4 +524,28 @@ extension M2Kit.M2Utils {
|
|||||||
public typealias Coordinator = Swift.Void
|
public typealias Coordinator = Swift.Void
|
||||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||||
}
|
}
|
||||||
|
public enum M2YTIDType : Swift.String {
|
||||||
|
case video
|
||||||
|
case playlist
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public init?(rawValue: Swift.String)
|
||||||
|
#endif
|
||||||
|
public typealias RawValue = Swift.String
|
||||||
|
public var rawValue: Swift.String {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public struct M2YT {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func extractId(fromUrl: Swift.String) -> (id: Swift.String, type: M2Kit.M2YTIDType)?
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getVideosOfPlaylistId(_ playlistId: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
extension M2Kit.M2NetConnecttionType : Swift.Equatable {}
|
||||||
|
extension M2Kit.M2NetConnecttionType : Swift.Hashable {}
|
||||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.Equatable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.Hashable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.RawRepresentable {}
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@ -148,11 +148,25 @@ public struct M2Musi {
|
|||||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public enum M2NetConnecttionType {
|
||||||
|
case wifi
|
||||||
|
case cellular
|
||||||
|
case other
|
||||||
|
case none
|
||||||
|
public static func == (a: M2Kit.M2NetConnecttionType, b: M2Kit.M2NetConnecttionType) -> Swift.Bool
|
||||||
|
public func hash(into hasher: inout Swift.Hasher)
|
||||||
|
public var hashValue: Swift.Int {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
}
|
||||||
public struct M2NetMonitor {
|
public struct M2NetMonitor {
|
||||||
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||||
public var isConnected: Swift.Bool {
|
public var isConnected: Swift.Bool {
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
|
public var connectionType: M2Kit.M2NetConnecttionType {
|
||||||
|
get
|
||||||
|
}
|
||||||
public func stop()
|
public func stop()
|
||||||
}
|
}
|
||||||
public struct M2Radio {
|
public struct M2Radio {
|
||||||
@ -510,4 +524,28 @@ extension M2Kit.M2Utils {
|
|||||||
public typealias Coordinator = Swift.Void
|
public typealias Coordinator = Swift.Void
|
||||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||||
}
|
}
|
||||||
|
public enum M2YTIDType : Swift.String {
|
||||||
|
case video
|
||||||
|
case playlist
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public init?(rawValue: Swift.String)
|
||||||
|
#endif
|
||||||
|
public typealias RawValue = Swift.String
|
||||||
|
public var rawValue: Swift.String {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public struct M2YT {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func extractId(fromUrl: Swift.String) -> (id: Swift.String, type: M2Kit.M2YTIDType)?
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getVideosOfPlaylistId(_ playlistId: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
extension M2Kit.M2NetConnecttionType : Swift.Equatable {}
|
||||||
|
extension M2Kit.M2NetConnecttionType : Swift.Hashable {}
|
||||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.Equatable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.Hashable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.RawRepresentable {}
|
||||||
|
|||||||
@ -148,11 +148,25 @@ public struct M2Musi {
|
|||||||
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
public static func getVideosOfPlaylistWithCode(_ code: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
public enum M2NetConnecttionType {
|
||||||
|
case wifi
|
||||||
|
case cellular
|
||||||
|
case other
|
||||||
|
case none
|
||||||
|
public static func == (a: M2Kit.M2NetConnecttionType, b: M2Kit.M2NetConnecttionType) -> Swift.Bool
|
||||||
|
public func hash(into hasher: inout Swift.Hasher)
|
||||||
|
public var hashValue: Swift.Int {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
}
|
||||||
public struct M2NetMonitor {
|
public struct M2NetMonitor {
|
||||||
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
public func start(monitorHandler: @escaping (_ isConnected: Swift.Bool) -> Swift.Void)
|
||||||
public var isConnected: Swift.Bool {
|
public var isConnected: Swift.Bool {
|
||||||
get
|
get
|
||||||
}
|
}
|
||||||
|
public var connectionType: M2Kit.M2NetConnecttionType {
|
||||||
|
get
|
||||||
|
}
|
||||||
public func stop()
|
public func stop()
|
||||||
}
|
}
|
||||||
public struct M2Radio {
|
public struct M2Radio {
|
||||||
@ -510,4 +524,28 @@ extension M2Kit.M2Utils {
|
|||||||
public typealias Coordinator = Swift.Void
|
public typealias Coordinator = Swift.Void
|
||||||
public typealias UIViewControllerType = M2Kit.M2WebVC
|
public typealias UIViewControllerType = M2Kit.M2WebVC
|
||||||
}
|
}
|
||||||
|
public enum M2YTIDType : Swift.String {
|
||||||
|
case video
|
||||||
|
case playlist
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public init?(rawValue: Swift.String)
|
||||||
|
#endif
|
||||||
|
public typealias RawValue = Swift.String
|
||||||
|
public var rawValue: Swift.String {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public struct M2YT {
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func extractId(fromUrl: Swift.String) -> (id: Swift.String, type: M2Kit.M2YTIDType)?
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getVideosOfPlaylistId(_ playlistId: Swift.String, result: @escaping (_ title: Swift.String?, _ videos: [[Swift.AnyHashable : Any]]) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
extension M2Kit.M2NetConnecttionType : Swift.Equatable {}
|
||||||
|
extension M2Kit.M2NetConnecttionType : Swift.Hashable {}
|
||||||
extension M2Kit.M2WebView : Swift.Sendable {}
|
extension M2Kit.M2WebView : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.Equatable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.Hashable {}
|
||||||
|
extension M2Kit.M2YTIDType : Swift.RawRepresentable {}
|
||||||
|
|||||||
Binary file not shown.
@ -10,15 +10,15 @@
|
|||||||
</data>
|
</data>
|
||||||
<key>Info.plist</key>
|
<key>Info.plist</key>
|
||||||
<data>
|
<data>
|
||||||
62UzeSHE6BDNq8mmEhyJ/a0YHfo=
|
NFqD13jpsJyQ010t00mgZo+Q3SE=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
|
||||||
<data>
|
<data>
|
||||||
7/vDeE/eduwd/GpD5b6zR/qxE5w=
|
TfPQVQXAUUy0VhUE7F9wVlgBd4g=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
||||||
<data>
|
<data>
|
||||||
TFJwyl/q/iM4I2LpvP1hLh568nA=
|
Wdl/bSWh8D0ZST7ZffXqHzwCDcs=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
||||||
<data>
|
<data>
|
||||||
@ -26,19 +26,19 @@
|
|||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
||||||
<data>
|
<data>
|
||||||
TFJwyl/q/iM4I2LpvP1hLh568nA=
|
Wdl/bSWh8D0ZST7ZffXqHzwCDcs=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
||||||
<data>
|
<data>
|
||||||
jS6vfZYVjjG/0PETqqbSevCQKxg=
|
p2422KKaCD0AtaFYENuU0hQKsq8=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
||||||
<data>
|
<data>
|
||||||
7/vDeE/eduwd/GpD5b6zR/qxE5w=
|
TfPQVQXAUUy0VhUE7F9wVlgBd4g=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
||||||
<data>
|
<data>
|
||||||
omuwys8zokQzIXbdjqEXc8hqz6A=
|
E4OkKnlS4W0dfpeM2EYBeAVnMu8=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
|
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
|
||||||
<data>
|
<data>
|
||||||
@ -46,11 +46,11 @@
|
|||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
|
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
|
||||||
<data>
|
<data>
|
||||||
omuwys8zokQzIXbdjqEXc8hqz6A=
|
E4OkKnlS4W0dfpeM2EYBeAVnMu8=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
|
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
|
||||||
<data>
|
<data>
|
||||||
M2/dATjacYcYYHrL0mJ5FsVROXk=
|
NvKJdrMVs67UVU9pd6r39U41Hfg=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/module.modulemap</key>
|
<key>Modules/module.modulemap</key>
|
||||||
<data>
|
<data>
|
||||||
@ -70,14 +70,14 @@
|
|||||||
<dict>
|
<dict>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
3AE/4H71l+C460hmg8wSDKssAzKn3VIDmUT1ktjYjlg=
|
ZL1xVAjZeFTwhY7mF6Ywdt5I95PPxC/repe5NqdCYso=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
zYQ2HHpnTeazmC3F6s8Yaf3ZQuShky+EF1ePHqXRzQE=
|
Kb4RPLhN3hG2ZaCTJyiDjuyZs4AuH4laOuO0rKcrCGk=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
||||||
@ -91,28 +91,28 @@
|
|||||||
<dict>
|
<dict>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
zYQ2HHpnTeazmC3F6s8Yaf3ZQuShky+EF1ePHqXRzQE=
|
Kb4RPLhN3hG2ZaCTJyiDjuyZs4AuH4laOuO0rKcrCGk=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
dSs92XW/apXzMnGPZ20JSbs2XobhwGM3EGdWGfTe5Xw=
|
wTxLjHnqfXm7/unmakxu+KKsvcEZTeXOgOZ66RXvfL4=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
3AE/4H71l+C460hmg8wSDKssAzKn3VIDmUT1ktjYjlg=
|
ZL1xVAjZeFTwhY7mF6Ywdt5I95PPxC/repe5NqdCYso=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
oh6d8kx/zTEQ5fSx0w3ySq2McJCV+phFCV82+iiLG2I=
|
Ynfjfr42+TrMpXb71dClmLlE65wRBW6YYqMQBWToWSQ=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
|
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
|
||||||
@ -126,14 +126,14 @@
|
|||||||
<dict>
|
<dict>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
oh6d8kx/zTEQ5fSx0w3ySq2McJCV+phFCV82+iiLG2I=
|
Ynfjfr42+TrMpXb71dClmLlE65wRBW6YYqMQBWToWSQ=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
|
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
whqwYYLQ7Xw2FTvO5K6ZvT1Dksa9TzjlqTSVFBK33wM=
|
Z6v0syHFV2qtJwnYYMsDcGTIC+SQA4emZGZ4PQkORoM=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/module.modulemap</key>
|
<key>Modules/module.modulemap</key>
|
||||||
|
|||||||
Reference in New Issue
Block a user