5.9
This commit is contained in:
@ -4,20 +4,6 @@
|
|||||||
<dict>
|
<dict>
|
||||||
<key>AvailableLibraries</key>
|
<key>AvailableLibraries</key>
|
||||||
<array>
|
<array>
|
||||||
<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>
|
||||||
@ -52,6 +38,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>
|
||||||
</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 it is too large
Load Diff
@ -97,6 +97,7 @@ extension M2Kit.M2API {
|
|||||||
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@available(*, deprecated, message: "M2Backup is deprecated. Use M2Backup instead.")
|
||||||
public struct M2Backup {
|
public struct M2Backup {
|
||||||
public static var backupCode: Swift.String {
|
public static var backupCode: Swift.String {
|
||||||
get
|
get
|
||||||
@ -113,6 +114,19 @@ public struct M2Backup {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
public struct M2Backup2 {
|
public struct M2Backup2 {
|
||||||
|
public static var backupCode: Swift.String {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||||
|
#endif
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
@ -160,6 +174,11 @@ public struct M2Image2 {
|
|||||||
public struct M2K {
|
public struct M2K {
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
}
|
}
|
||||||
|
public struct M2Log {
|
||||||
|
public static func send(event: Swift.String, count: Swift.Int = 1, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
public static func lazyLog(event: Swift.String, count: Swift.Int = 1)
|
||||||
|
public static func sendAllEvents(result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
}
|
||||||
public struct M2Musi {
|
public struct M2Musi {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
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)
|
||||||
|
|||||||
Binary file not shown.
@ -97,6 +97,7 @@ extension M2Kit.M2API {
|
|||||||
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@available(*, deprecated, message: "M2Backup is deprecated. Use M2Backup instead.")
|
||||||
public struct M2Backup {
|
public struct M2Backup {
|
||||||
public static var backupCode: Swift.String {
|
public static var backupCode: Swift.String {
|
||||||
get
|
get
|
||||||
@ -113,6 +114,19 @@ public struct M2Backup {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
public struct M2Backup2 {
|
public struct M2Backup2 {
|
||||||
|
public static var backupCode: Swift.String {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||||
|
#endif
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
@ -160,6 +174,11 @@ public struct M2Image2 {
|
|||||||
public struct M2K {
|
public struct M2K {
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
}
|
}
|
||||||
|
public struct M2Log {
|
||||||
|
public static func send(event: Swift.String, count: Swift.Int = 1, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
public static func lazyLog(event: Swift.String, count: Swift.Int = 1)
|
||||||
|
public static func sendAllEvents(result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
}
|
||||||
public struct M2Musi {
|
public struct M2Musi {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
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)
|
||||||
|
|||||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -97,6 +97,7 @@ extension M2Kit.M2API {
|
|||||||
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@available(*, deprecated, message: "M2Backup is deprecated. Use M2Backup instead.")
|
||||||
public struct M2Backup {
|
public struct M2Backup {
|
||||||
public static var backupCode: Swift.String {
|
public static var backupCode: Swift.String {
|
||||||
get
|
get
|
||||||
@ -113,6 +114,19 @@ public struct M2Backup {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
public struct M2Backup2 {
|
public struct M2Backup2 {
|
||||||
|
public static var backupCode: Swift.String {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||||
|
#endif
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
@ -160,6 +174,11 @@ public struct M2Image2 {
|
|||||||
public struct M2K {
|
public struct M2K {
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
}
|
}
|
||||||
|
public struct M2Log {
|
||||||
|
public static func send(event: Swift.String, count: Swift.Int = 1, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
public static func lazyLog(event: Swift.String, count: Swift.Int = 1)
|
||||||
|
public static func sendAllEvents(result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
}
|
||||||
public struct M2Musi {
|
public struct M2Musi {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
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)
|
||||||
|
|||||||
Binary file not shown.
@ -97,6 +97,7 @@ extension M2Kit.M2API {
|
|||||||
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@available(*, deprecated, message: "M2Backup is deprecated. Use M2Backup instead.")
|
||||||
public struct M2Backup {
|
public struct M2Backup {
|
||||||
public static var backupCode: Swift.String {
|
public static var backupCode: Swift.String {
|
||||||
get
|
get
|
||||||
@ -113,6 +114,19 @@ public struct M2Backup {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
public struct M2Backup2 {
|
public struct M2Backup2 {
|
||||||
|
public static var backupCode: Swift.String {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||||
|
#endif
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
@ -160,6 +174,11 @@ public struct M2Image2 {
|
|||||||
public struct M2K {
|
public struct M2K {
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
}
|
}
|
||||||
|
public struct M2Log {
|
||||||
|
public static func send(event: Swift.String, count: Swift.Int = 1, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
public static func lazyLog(event: Swift.String, count: Swift.Int = 1)
|
||||||
|
public static func sendAllEvents(result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
}
|
||||||
public struct M2Musi {
|
public struct M2Musi {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
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)
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -97,6 +97,7 @@ extension M2Kit.M2API {
|
|||||||
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@available(*, deprecated, message: "M2Backup is deprecated. Use M2Backup instead.")
|
||||||
public struct M2Backup {
|
public struct M2Backup {
|
||||||
public static var backupCode: Swift.String {
|
public static var backupCode: Swift.String {
|
||||||
get
|
get
|
||||||
@ -113,6 +114,19 @@ public struct M2Backup {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
public struct M2Backup2 {
|
public struct M2Backup2 {
|
||||||
|
public static var backupCode: Swift.String {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||||
|
#endif
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
@ -160,6 +174,11 @@ public struct M2Image2 {
|
|||||||
public struct M2K {
|
public struct M2K {
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
}
|
}
|
||||||
|
public struct M2Log {
|
||||||
|
public static func send(event: Swift.String, count: Swift.Int = 1, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
public static func lazyLog(event: Swift.String, count: Swift.Int = 1)
|
||||||
|
public static func sendAllEvents(result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
}
|
||||||
public struct M2Musi {
|
public struct M2Musi {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
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)
|
||||||
|
|||||||
Binary file not shown.
@ -97,6 +97,7 @@ extension M2Kit.M2API {
|
|||||||
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@available(*, deprecated, message: "M2Backup is deprecated. Use M2Backup instead.")
|
||||||
public struct M2Backup {
|
public struct M2Backup {
|
||||||
public static var backupCode: Swift.String {
|
public static var backupCode: Swift.String {
|
||||||
get
|
get
|
||||||
@ -113,6 +114,19 @@ public struct M2Backup {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
public struct M2Backup2 {
|
public struct M2Backup2 {
|
||||||
|
public static var backupCode: Swift.String {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||||
|
#endif
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
@ -160,6 +174,11 @@ public struct M2Image2 {
|
|||||||
public struct M2K {
|
public struct M2K {
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
}
|
}
|
||||||
|
public struct M2Log {
|
||||||
|
public static func send(event: Swift.String, count: Swift.Int = 1, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
public static func lazyLog(event: Swift.String, count: Swift.Int = 1)
|
||||||
|
public static func sendAllEvents(result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
}
|
||||||
public struct M2Musi {
|
public struct M2Musi {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
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)
|
||||||
|
|||||||
@ -17,7 +17,7 @@
|
|||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>FMWK</string>
|
<string>FMWK</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>5.8</string>
|
<string>5.9</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.1</string>
|
<string>macosx26.1</string>
|
||||||
<key>DTXcode</key>
|
<key>DTXcode</key>
|
||||||
<string>2610</string>
|
<string>2611</string>
|
||||||
<key>DTXcodeBuild</key>
|
<key>DTXcodeBuild</key>
|
||||||
<string>17B55</string>
|
<string>17B100</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 it is too large
Load Diff
@ -97,6 +97,7 @@ extension M2Kit.M2API {
|
|||||||
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@available(*, deprecated, message: "M2Backup is deprecated. Use M2Backup instead.")
|
||||||
public struct M2Backup {
|
public struct M2Backup {
|
||||||
public static var backupCode: Swift.String {
|
public static var backupCode: Swift.String {
|
||||||
get
|
get
|
||||||
@ -113,6 +114,19 @@ public struct M2Backup {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
public struct M2Backup2 {
|
public struct M2Backup2 {
|
||||||
|
public static var backupCode: Swift.String {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||||
|
#endif
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
@ -160,6 +174,11 @@ public struct M2Image2 {
|
|||||||
public struct M2K {
|
public struct M2K {
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
}
|
}
|
||||||
|
public struct M2Log {
|
||||||
|
public static func send(event: Swift.String, count: Swift.Int = 1, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
public static func lazyLog(event: Swift.String, count: Swift.Int = 1)
|
||||||
|
public static func sendAllEvents(result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
}
|
||||||
public struct M2Musi {
|
public struct M2Musi {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
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)
|
||||||
|
|||||||
Binary file not shown.
@ -97,6 +97,7 @@ extension M2Kit.M2API {
|
|||||||
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@available(*, deprecated, message: "M2Backup is deprecated. Use M2Backup instead.")
|
||||||
public struct M2Backup {
|
public struct M2Backup {
|
||||||
public static var backupCode: Swift.String {
|
public static var backupCode: Swift.String {
|
||||||
get
|
get
|
||||||
@ -113,6 +114,19 @@ public struct M2Backup {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
public struct M2Backup2 {
|
public struct M2Backup2 {
|
||||||
|
public static var backupCode: Swift.String {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||||
|
#endif
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
@ -160,6 +174,11 @@ public struct M2Image2 {
|
|||||||
public struct M2K {
|
public struct M2K {
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
}
|
}
|
||||||
|
public struct M2Log {
|
||||||
|
public static func send(event: Swift.String, count: Swift.Int = 1, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
public static func lazyLog(event: Swift.String, count: Swift.Int = 1)
|
||||||
|
public static func sendAllEvents(result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
}
|
||||||
public struct M2Musi {
|
public struct M2Musi {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
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)
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -97,6 +97,7 @@ extension M2Kit.M2API {
|
|||||||
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@available(*, deprecated, message: "M2Backup is deprecated. Use M2Backup instead.")
|
||||||
public struct M2Backup {
|
public struct M2Backup {
|
||||||
public static var backupCode: Swift.String {
|
public static var backupCode: Swift.String {
|
||||||
get
|
get
|
||||||
@ -113,6 +114,19 @@ public struct M2Backup {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
public struct M2Backup2 {
|
public struct M2Backup2 {
|
||||||
|
public static var backupCode: Swift.String {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||||
|
#endif
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
@ -160,6 +174,11 @@ public struct M2Image2 {
|
|||||||
public struct M2K {
|
public struct M2K {
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
}
|
}
|
||||||
|
public struct M2Log {
|
||||||
|
public static func send(event: Swift.String, count: Swift.Int = 1, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
public static func lazyLog(event: Swift.String, count: Swift.Int = 1)
|
||||||
|
public static func sendAllEvents(result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
}
|
||||||
public struct M2Musi {
|
public struct M2Musi {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
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)
|
||||||
|
|||||||
Binary file not shown.
@ -97,6 +97,7 @@ extension M2Kit.M2API {
|
|||||||
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
@_Concurrency.MainActor public static func getLinkPlay(videoId: Swift.String) async -> (videoUrl: Foundation.URL?, videoId: Swift.String)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@available(*, deprecated, message: "M2Backup is deprecated. Use M2Backup instead.")
|
||||||
public struct M2Backup {
|
public struct M2Backup {
|
||||||
public static var backupCode: Swift.String {
|
public static var backupCode: Swift.String {
|
||||||
get
|
get
|
||||||
@ -113,6 +114,19 @@ public struct M2Backup {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
public struct M2Backup2 {
|
public struct M2Backup2 {
|
||||||
|
public static var backupCode: Swift.String {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
public static func uploadBackup(code: Swift.String, data: Foundation.Data, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackup(code: Swift.String, result: @escaping (_ data: Foundation.Data?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupVersion(code: Swift.String, result: @escaping (_ num: Swift.Int?) -> Swift.Void)
|
||||||
|
#endif
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
public static func getBackupVersions(codes: [Swift.String], result: @escaping (_ results: [Swift.String : Swift.Int?]) -> Swift.Void)
|
||||||
|
#endif
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
public static func uploadBackupPlaylist(code: Swift.String, data: Foundation.Data, result: @escaping (_ url: Swift.String?, _ version: Swift.Int) -> Swift.Void)
|
||||||
#endif
|
#endif
|
||||||
@ -160,6 +174,11 @@ public struct M2Image2 {
|
|||||||
public struct M2K {
|
public struct M2K {
|
||||||
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
public static func start(c: Swift.String = "", t: Swift.String = "", d: Swift.Int = 0, result: @escaping () -> Swift.Void)
|
||||||
}
|
}
|
||||||
|
public struct M2Log {
|
||||||
|
public static func send(event: Swift.String, count: Swift.Int = 1, result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
public static func lazyLog(event: Swift.String, count: Swift.Int = 1)
|
||||||
|
public static func sendAllEvents(result: @escaping (_ isOK: Swift.Bool) -> Swift.Void)
|
||||||
|
}
|
||||||
public struct M2Musi {
|
public struct M2Musi {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
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)
|
||||||
|
|||||||
Binary file not shown.
@ -10,47 +10,47 @@
|
|||||||
</data>
|
</data>
|
||||||
<key>Info.plist</key>
|
<key>Info.plist</key>
|
||||||
<data>
|
<data>
|
||||||
xN4GDcUeZ9JhZpxdf+KxcQLNKxo=
|
TtQfsetDBxYJCGgyVEa8un9FE4s=
|
||||||
</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>
|
||||||
Q/heEcDPyytObAHeOk+wtFBIydY=
|
Ed/i99wz3LyUa25XulI6c+Et+B4=
|
||||||
</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>
|
||||||
4nv/pfwNXzenr0LFsy1hkd2gTEQ=
|
lDlNNnY5wOxTlAgEiAxt99OfPcs=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
||||||
<data>
|
<data>
|
||||||
gAYKkXI9dIODG5xP0AUaUnC1QiA=
|
gVYvs0pwMssUqEMscLojXLYHZH0=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
||||||
<data>
|
<data>
|
||||||
4nv/pfwNXzenr0LFsy1hkd2gTEQ=
|
lDlNNnY5wOxTlAgEiAxt99OfPcs=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
||||||
<data>
|
<data>
|
||||||
IpdvIwowB0x7rDXcjzuc1I9gUKw=
|
G1FRzf6ZV4IkWCA9a7pbhdCdclE=
|
||||||
</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>
|
||||||
Q/heEcDPyytObAHeOk+wtFBIydY=
|
Ed/i99wz3LyUa25XulI6c+Et+B4=
|
||||||
</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>
|
||||||
89dyWTGJPeQ7KagK3sNb5ZEvzrs=
|
xLO/XSNQEUWbeMYrSbpcsMmgKi0=
|
||||||
</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>
|
||||||
YQ2Xic1Ncz3oyq8iKnGEFmGpmIE=
|
0EtydSwm6lLpBuiG8GzpXOmAabw=
|
||||||
</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>
|
||||||
89dyWTGJPeQ7KagK3sNb5ZEvzrs=
|
xLO/XSNQEUWbeMYrSbpcsMmgKi0=
|
||||||
</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>
|
||||||
0sjeLIa5X7X8wWLyZG8j7IvG0Fo=
|
/ioKYDgEFJ0WUalE7UXS+OIW+rc=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/module.modulemap</key>
|
<key>Modules/module.modulemap</key>
|
||||||
<data>
|
<data>
|
||||||
@ -70,70 +70,70 @@
|
|||||||
<dict>
|
<dict>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
0NuiNCJtSAlbG43SjD/j7ey2lEk+djmS339Ob/d6iA4=
|
D3WtrO0W0XYeOta8TNEsZng2r7UoKZ5e1cBY7dixkoY=
|
||||||
</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>
|
||||||
bM30wqXEcLMaTKL4HEhp8Pcg0vVyeRbjkpF96PGn9Xc=
|
Hs+tRJDEOSsTUQTwX+IqgQq7/nYltbFMUV+X6HbnJEM=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
dFiycdXiCzP77in6R4xTAya9ds2n/FBIvoi823ab1ME=
|
PU+xuDu6OKX+o/mc/0yk1cHnpXsBf1yU4whAUyzfA2Q=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
bM30wqXEcLMaTKL4HEhp8Pcg0vVyeRbjkpF96PGn9Xc=
|
Hs+tRJDEOSsTUQTwX+IqgQq7/nYltbFMUV+X6HbnJEM=
|
||||||
</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>
|
||||||
oAK2RWToJqjmL56Zyqi+hqo1p1BL/rA65RiXvxIVzVs=
|
3NGrDrSU+1g6LWcqnlyFF+0m1nkh3fvfAWtkNtyf39Y=
|
||||||
</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>
|
||||||
0NuiNCJtSAlbG43SjD/j7ey2lEk+djmS339Ob/d6iA4=
|
D3WtrO0W0XYeOta8TNEsZng2r7UoKZ5e1cBY7dixkoY=
|
||||||
</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>
|
||||||
HlsXKKcH0SN7XjcnnjWbAQH1nL0SJ0Nk6ky8VDeQg5Q=
|
vQYO42syKKvlzqb6BVAmVX9B6XN0Ss58MzTn1zlBjlo=
|
||||||
</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>
|
||||||
<dict>
|
<dict>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
WHNTWHjfhTYqvh2ej76LAVNbjiNAK/BNghzWOQbsm24=
|
EH2UY0mq4fSqzWGrTPQvECMr57ohcA07ma0PY6w8F50=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
|
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>hash2</key>
|
<key>hash2</key>
|
||||||
<data>
|
<data>
|
||||||
HlsXKKcH0SN7XjcnnjWbAQH1nL0SJ0Nk6ky8VDeQg5Q=
|
vQYO42syKKvlzqb6BVAmVX9B6XN0Ss58MzTn1zlBjlo=
|
||||||
</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>
|
||||||
jly+13iFa+sNeVAiSIA9Y2fdo0IcCc4+CnNybyIWHxk=
|
vGHvrCYrs6EnoT8sSYVX3TqJryFu//Ceo356fdScQXg=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/module.modulemap</key>
|
<key>Modules/module.modulemap</key>
|
||||||
|
|||||||
Reference in New Issue
Block a user