Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cd16fd3ce3 | |||
| e6c206197c |
@ -4,23 +4,6 @@
|
|||||||
<dict>
|
<dict>
|
||||||
<key>AvailableLibraries</key>
|
<key>AvailableLibraries</key>
|
||||||
<array>
|
<array>
|
||||||
<dict>
|
|
||||||
<key>BinaryPath</key>
|
|
||||||
<string>M2Kit.framework/Versions/A/M2Kit</string>
|
|
||||||
<key>LibraryIdentifier</key>
|
|
||||||
<string>ios-arm64_x86_64-maccatalyst</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>maccatalyst</string>
|
|
||||||
</dict>
|
|
||||||
<dict>
|
<dict>
|
||||||
<key>BinaryPath</key>
|
<key>BinaryPath</key>
|
||||||
<string>M2Kit.framework/M2Kit</string>
|
<string>M2Kit.framework/M2Kit</string>
|
||||||
@ -52,6 +35,23 @@
|
|||||||
<key>SupportedPlatformVariant</key>
|
<key>SupportedPlatformVariant</key>
|
||||||
<string>simulator</string>
|
<string>simulator</string>
|
||||||
</dict>
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>BinaryPath</key>
|
||||||
|
<string>M2Kit.framework/Versions/A/M2Kit</string>
|
||||||
|
<key>LibraryIdentifier</key>
|
||||||
|
<string>ios-arm64_x86_64-maccatalyst</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>maccatalyst</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
@ -595,6 +595,24 @@ public let m2Version: Swift.String
|
|||||||
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2IAP {
|
||||||
|
@_Concurrency.MainActor public static let IAPPurchasedSuccessNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPPurchasedFailNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPProductStatusUpdatedNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPProductsAvailableChangedNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static func setup(iapId: Swift.String)
|
||||||
|
@_Concurrency.MainActor public static var isProVersion: Swift.Bool {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
@_Concurrency.MainActor public static var priceProVersion: Swift.String? {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@_Concurrency.MainActor public static func fetch()
|
||||||
|
@_Concurrency.MainActor public static func purchaseProVersion()
|
||||||
|
@_Concurrency.MainActor public static func restorePurchase()
|
||||||
|
}
|
||||||
@_Concurrency.MainActor public struct M2Image {
|
@_Concurrency.MainActor public struct M2Image {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
@ -988,6 +1006,9 @@ extension M2Kit.M2Utils {
|
|||||||
@_Concurrency.MainActor public static func randomCode7() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode7() -> Swift.String
|
||||||
@_Concurrency.MainActor public static func randomCode11() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode11() -> Swift.String
|
||||||
}
|
}
|
||||||
|
extension M2Kit.M2Utils {
|
||||||
|
@_Concurrency.MainActor public static func weightedRandom(from items: [Swift.String], weights: [Swift.Int]) -> Swift.String
|
||||||
|
}
|
||||||
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
||||||
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
@ -1037,6 +1058,7 @@ extension M2Kit.M2API : Swift.Sendable {}
|
|||||||
extension M2Kit.M2Backup : Swift.Sendable {}
|
extension M2Kit.M2Backup : Swift.Sendable {}
|
||||||
extension M2Kit.M2Feedback : Swift.Sendable {}
|
extension M2Kit.M2Feedback : Swift.Sendable {}
|
||||||
extension M2Kit.M2HTTP : Swift.Sendable {}
|
extension M2Kit.M2HTTP : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2IAP : Swift.Sendable {}
|
||||||
extension M2Kit.M2Image : Swift.Sendable {}
|
extension M2Kit.M2Image : Swift.Sendable {}
|
||||||
extension M2Kit.M2K : Swift.Sendable {}
|
extension M2Kit.M2K : Swift.Sendable {}
|
||||||
extension M2Kit.M2Log : Swift.Sendable {}
|
extension M2Kit.M2Log : Swift.Sendable {}
|
||||||
|
|||||||
Binary file not shown.
@ -595,6 +595,24 @@ public let m2Version: Swift.String
|
|||||||
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2IAP {
|
||||||
|
@_Concurrency.MainActor public static let IAPPurchasedSuccessNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPPurchasedFailNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPProductStatusUpdatedNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPProductsAvailableChangedNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static func setup(iapId: Swift.String)
|
||||||
|
@_Concurrency.MainActor public static var isProVersion: Swift.Bool {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
@_Concurrency.MainActor public static var priceProVersion: Swift.String? {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@_Concurrency.MainActor public static func fetch()
|
||||||
|
@_Concurrency.MainActor public static func purchaseProVersion()
|
||||||
|
@_Concurrency.MainActor public static func restorePurchase()
|
||||||
|
}
|
||||||
@_Concurrency.MainActor public struct M2Image {
|
@_Concurrency.MainActor public struct M2Image {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
@ -988,6 +1006,9 @@ extension M2Kit.M2Utils {
|
|||||||
@_Concurrency.MainActor public static func randomCode7() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode7() -> Swift.String
|
||||||
@_Concurrency.MainActor public static func randomCode11() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode11() -> Swift.String
|
||||||
}
|
}
|
||||||
|
extension M2Kit.M2Utils {
|
||||||
|
@_Concurrency.MainActor public static func weightedRandom(from items: [Swift.String], weights: [Swift.Int]) -> Swift.String
|
||||||
|
}
|
||||||
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
||||||
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
@ -1037,6 +1058,7 @@ extension M2Kit.M2API : Swift.Sendable {}
|
|||||||
extension M2Kit.M2Backup : Swift.Sendable {}
|
extension M2Kit.M2Backup : Swift.Sendable {}
|
||||||
extension M2Kit.M2Feedback : Swift.Sendable {}
|
extension M2Kit.M2Feedback : Swift.Sendable {}
|
||||||
extension M2Kit.M2HTTP : Swift.Sendable {}
|
extension M2Kit.M2HTTP : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2IAP : Swift.Sendable {}
|
||||||
extension M2Kit.M2Image : Swift.Sendable {}
|
extension M2Kit.M2Image : Swift.Sendable {}
|
||||||
extension M2Kit.M2K : Swift.Sendable {}
|
extension M2Kit.M2K : Swift.Sendable {}
|
||||||
extension M2Kit.M2Log : Swift.Sendable {}
|
extension M2Kit.M2Log : Swift.Sendable {}
|
||||||
|
|||||||
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -595,6 +595,24 @@ public let m2Version: Swift.String
|
|||||||
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2IAP {
|
||||||
|
@_Concurrency.MainActor public static let IAPPurchasedSuccessNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPPurchasedFailNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPProductStatusUpdatedNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPProductsAvailableChangedNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static func setup(iapId: Swift.String)
|
||||||
|
@_Concurrency.MainActor public static var isProVersion: Swift.Bool {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
@_Concurrency.MainActor public static var priceProVersion: Swift.String? {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@_Concurrency.MainActor public static func fetch()
|
||||||
|
@_Concurrency.MainActor public static func purchaseProVersion()
|
||||||
|
@_Concurrency.MainActor public static func restorePurchase()
|
||||||
|
}
|
||||||
@_Concurrency.MainActor public struct M2Image {
|
@_Concurrency.MainActor public struct M2Image {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
@ -988,6 +1006,9 @@ extension M2Kit.M2Utils {
|
|||||||
@_Concurrency.MainActor public static func randomCode7() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode7() -> Swift.String
|
||||||
@_Concurrency.MainActor public static func randomCode11() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode11() -> Swift.String
|
||||||
}
|
}
|
||||||
|
extension M2Kit.M2Utils {
|
||||||
|
@_Concurrency.MainActor public static func weightedRandom(from items: [Swift.String], weights: [Swift.Int]) -> Swift.String
|
||||||
|
}
|
||||||
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
||||||
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
@ -1037,6 +1058,7 @@ extension M2Kit.M2API : Swift.Sendable {}
|
|||||||
extension M2Kit.M2Backup : Swift.Sendable {}
|
extension M2Kit.M2Backup : Swift.Sendable {}
|
||||||
extension M2Kit.M2Feedback : Swift.Sendable {}
|
extension M2Kit.M2Feedback : Swift.Sendable {}
|
||||||
extension M2Kit.M2HTTP : Swift.Sendable {}
|
extension M2Kit.M2HTTP : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2IAP : Swift.Sendable {}
|
||||||
extension M2Kit.M2Image : Swift.Sendable {}
|
extension M2Kit.M2Image : Swift.Sendable {}
|
||||||
extension M2Kit.M2K : Swift.Sendable {}
|
extension M2Kit.M2K : Swift.Sendable {}
|
||||||
extension M2Kit.M2Log : Swift.Sendable {}
|
extension M2Kit.M2Log : Swift.Sendable {}
|
||||||
|
|||||||
Binary file not shown.
@ -595,6 +595,24 @@ public let m2Version: Swift.String
|
|||||||
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2IAP {
|
||||||
|
@_Concurrency.MainActor public static let IAPPurchasedSuccessNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPPurchasedFailNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPProductStatusUpdatedNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPProductsAvailableChangedNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static func setup(iapId: Swift.String)
|
||||||
|
@_Concurrency.MainActor public static var isProVersion: Swift.Bool {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
@_Concurrency.MainActor public static var priceProVersion: Swift.String? {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@_Concurrency.MainActor public static func fetch()
|
||||||
|
@_Concurrency.MainActor public static func purchaseProVersion()
|
||||||
|
@_Concurrency.MainActor public static func restorePurchase()
|
||||||
|
}
|
||||||
@_Concurrency.MainActor public struct M2Image {
|
@_Concurrency.MainActor public struct M2Image {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
@ -988,6 +1006,9 @@ extension M2Kit.M2Utils {
|
|||||||
@_Concurrency.MainActor public static func randomCode7() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode7() -> Swift.String
|
||||||
@_Concurrency.MainActor public static func randomCode11() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode11() -> Swift.String
|
||||||
}
|
}
|
||||||
|
extension M2Kit.M2Utils {
|
||||||
|
@_Concurrency.MainActor public static func weightedRandom(from items: [Swift.String], weights: [Swift.Int]) -> Swift.String
|
||||||
|
}
|
||||||
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
||||||
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
@ -1037,6 +1058,7 @@ extension M2Kit.M2API : Swift.Sendable {}
|
|||||||
extension M2Kit.M2Backup : Swift.Sendable {}
|
extension M2Kit.M2Backup : Swift.Sendable {}
|
||||||
extension M2Kit.M2Feedback : Swift.Sendable {}
|
extension M2Kit.M2Feedback : Swift.Sendable {}
|
||||||
extension M2Kit.M2HTTP : Swift.Sendable {}
|
extension M2Kit.M2HTTP : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2IAP : Swift.Sendable {}
|
||||||
extension M2Kit.M2Image : Swift.Sendable {}
|
extension M2Kit.M2Image : Swift.Sendable {}
|
||||||
extension M2Kit.M2K : Swift.Sendable {}
|
extension M2Kit.M2K : Swift.Sendable {}
|
||||||
extension M2Kit.M2Log : Swift.Sendable {}
|
extension M2Kit.M2Log : Swift.Sendable {}
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@ -595,6 +595,24 @@ public let m2Version: Swift.String
|
|||||||
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2IAP {
|
||||||
|
@_Concurrency.MainActor public static let IAPPurchasedSuccessNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPPurchasedFailNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPProductStatusUpdatedNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPProductsAvailableChangedNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static func setup(iapId: Swift.String)
|
||||||
|
@_Concurrency.MainActor public static var isProVersion: Swift.Bool {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
@_Concurrency.MainActor public static var priceProVersion: Swift.String? {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@_Concurrency.MainActor public static func fetch()
|
||||||
|
@_Concurrency.MainActor public static func purchaseProVersion()
|
||||||
|
@_Concurrency.MainActor public static func restorePurchase()
|
||||||
|
}
|
||||||
@_Concurrency.MainActor public struct M2Image {
|
@_Concurrency.MainActor public struct M2Image {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
@ -988,6 +1006,9 @@ extension M2Kit.M2Utils {
|
|||||||
@_Concurrency.MainActor public static func randomCode7() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode7() -> Swift.String
|
||||||
@_Concurrency.MainActor public static func randomCode11() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode11() -> Swift.String
|
||||||
}
|
}
|
||||||
|
extension M2Kit.M2Utils {
|
||||||
|
@_Concurrency.MainActor public static func weightedRandom(from items: [Swift.String], weights: [Swift.Int]) -> Swift.String
|
||||||
|
}
|
||||||
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
||||||
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
@ -1037,6 +1058,7 @@ extension M2Kit.M2API : Swift.Sendable {}
|
|||||||
extension M2Kit.M2Backup : Swift.Sendable {}
|
extension M2Kit.M2Backup : Swift.Sendable {}
|
||||||
extension M2Kit.M2Feedback : Swift.Sendable {}
|
extension M2Kit.M2Feedback : Swift.Sendable {}
|
||||||
extension M2Kit.M2HTTP : Swift.Sendable {}
|
extension M2Kit.M2HTTP : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2IAP : Swift.Sendable {}
|
||||||
extension M2Kit.M2Image : Swift.Sendable {}
|
extension M2Kit.M2Image : Swift.Sendable {}
|
||||||
extension M2Kit.M2K : Swift.Sendable {}
|
extension M2Kit.M2K : Swift.Sendable {}
|
||||||
extension M2Kit.M2Log : Swift.Sendable {}
|
extension M2Kit.M2Log : Swift.Sendable {}
|
||||||
|
|||||||
Binary file not shown.
@ -595,6 +595,24 @@ public let m2Version: Swift.String
|
|||||||
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2IAP {
|
||||||
|
@_Concurrency.MainActor public static let IAPPurchasedSuccessNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPPurchasedFailNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPProductStatusUpdatedNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPProductsAvailableChangedNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static func setup(iapId: Swift.String)
|
||||||
|
@_Concurrency.MainActor public static var isProVersion: Swift.Bool {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
@_Concurrency.MainActor public static var priceProVersion: Swift.String? {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@_Concurrency.MainActor public static func fetch()
|
||||||
|
@_Concurrency.MainActor public static func purchaseProVersion()
|
||||||
|
@_Concurrency.MainActor public static func restorePurchase()
|
||||||
|
}
|
||||||
@_Concurrency.MainActor public struct M2Image {
|
@_Concurrency.MainActor public struct M2Image {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
@ -988,6 +1006,9 @@ extension M2Kit.M2Utils {
|
|||||||
@_Concurrency.MainActor public static func randomCode7() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode7() -> Swift.String
|
||||||
@_Concurrency.MainActor public static func randomCode11() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode11() -> Swift.String
|
||||||
}
|
}
|
||||||
|
extension M2Kit.M2Utils {
|
||||||
|
@_Concurrency.MainActor public static func weightedRandom(from items: [Swift.String], weights: [Swift.Int]) -> Swift.String
|
||||||
|
}
|
||||||
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
||||||
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
@ -1037,6 +1058,7 @@ extension M2Kit.M2API : Swift.Sendable {}
|
|||||||
extension M2Kit.M2Backup : Swift.Sendable {}
|
extension M2Kit.M2Backup : Swift.Sendable {}
|
||||||
extension M2Kit.M2Feedback : Swift.Sendable {}
|
extension M2Kit.M2Feedback : Swift.Sendable {}
|
||||||
extension M2Kit.M2HTTP : Swift.Sendable {}
|
extension M2Kit.M2HTTP : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2IAP : Swift.Sendable {}
|
||||||
extension M2Kit.M2Image : Swift.Sendable {}
|
extension M2Kit.M2Image : Swift.Sendable {}
|
||||||
extension M2Kit.M2K : Swift.Sendable {}
|
extension M2Kit.M2K : Swift.Sendable {}
|
||||||
extension M2Kit.M2Log : Swift.Sendable {}
|
extension M2Kit.M2Log : Swift.Sendable {}
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
<plist version="1.0">
|
<plist version="1.0">
|
||||||
<dict>
|
<dict>
|
||||||
<key>BuildMachineOSBuild</key>
|
<key>BuildMachineOSBuild</key>
|
||||||
<string>25D125</string>
|
<string>25D2128</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.23</string>
|
<string>5.25</string>
|
||||||
<key>CFBundleSupportedPlatforms</key>
|
<key>CFBundleSupportedPlatforms</key>
|
||||||
<array>
|
<array>
|
||||||
<string>MacOSX</string>
|
<string>MacOSX</string>
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -595,6 +595,24 @@ public let m2Version: Swift.String
|
|||||||
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2IAP {
|
||||||
|
@_Concurrency.MainActor public static let IAPPurchasedSuccessNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPPurchasedFailNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPProductStatusUpdatedNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPProductsAvailableChangedNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static func setup(iapId: Swift.String)
|
||||||
|
@_Concurrency.MainActor public static var isProVersion: Swift.Bool {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
@_Concurrency.MainActor public static var priceProVersion: Swift.String? {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@_Concurrency.MainActor public static func fetch()
|
||||||
|
@_Concurrency.MainActor public static func purchaseProVersion()
|
||||||
|
@_Concurrency.MainActor public static func restorePurchase()
|
||||||
|
}
|
||||||
@_Concurrency.MainActor public struct M2Image {
|
@_Concurrency.MainActor public struct M2Image {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
@ -988,6 +1006,9 @@ extension M2Kit.M2Utils {
|
|||||||
@_Concurrency.MainActor public static func randomCode7() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode7() -> Swift.String
|
||||||
@_Concurrency.MainActor public static func randomCode11() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode11() -> Swift.String
|
||||||
}
|
}
|
||||||
|
extension M2Kit.M2Utils {
|
||||||
|
@_Concurrency.MainActor public static func weightedRandom(from items: [Swift.String], weights: [Swift.Int]) -> Swift.String
|
||||||
|
}
|
||||||
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
||||||
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
@ -1037,6 +1058,7 @@ extension M2Kit.M2API : Swift.Sendable {}
|
|||||||
extension M2Kit.M2Backup : Swift.Sendable {}
|
extension M2Kit.M2Backup : Swift.Sendable {}
|
||||||
extension M2Kit.M2Feedback : Swift.Sendable {}
|
extension M2Kit.M2Feedback : Swift.Sendable {}
|
||||||
extension M2Kit.M2HTTP : Swift.Sendable {}
|
extension M2Kit.M2HTTP : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2IAP : Swift.Sendable {}
|
||||||
extension M2Kit.M2Image : Swift.Sendable {}
|
extension M2Kit.M2Image : Swift.Sendable {}
|
||||||
extension M2Kit.M2K : Swift.Sendable {}
|
extension M2Kit.M2K : Swift.Sendable {}
|
||||||
extension M2Kit.M2Log : Swift.Sendable {}
|
extension M2Kit.M2Log : Swift.Sendable {}
|
||||||
|
|||||||
Binary file not shown.
@ -595,6 +595,24 @@ public let m2Version: Swift.String
|
|||||||
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2IAP {
|
||||||
|
@_Concurrency.MainActor public static let IAPPurchasedSuccessNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPPurchasedFailNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPProductStatusUpdatedNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPProductsAvailableChangedNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static func setup(iapId: Swift.String)
|
||||||
|
@_Concurrency.MainActor public static var isProVersion: Swift.Bool {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
@_Concurrency.MainActor public static var priceProVersion: Swift.String? {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@_Concurrency.MainActor public static func fetch()
|
||||||
|
@_Concurrency.MainActor public static func purchaseProVersion()
|
||||||
|
@_Concurrency.MainActor public static func restorePurchase()
|
||||||
|
}
|
||||||
@_Concurrency.MainActor public struct M2Image {
|
@_Concurrency.MainActor public struct M2Image {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
@ -988,6 +1006,9 @@ extension M2Kit.M2Utils {
|
|||||||
@_Concurrency.MainActor public static func randomCode7() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode7() -> Swift.String
|
||||||
@_Concurrency.MainActor public static func randomCode11() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode11() -> Swift.String
|
||||||
}
|
}
|
||||||
|
extension M2Kit.M2Utils {
|
||||||
|
@_Concurrency.MainActor public static func weightedRandom(from items: [Swift.String], weights: [Swift.Int]) -> Swift.String
|
||||||
|
}
|
||||||
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
||||||
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
@ -1037,6 +1058,7 @@ extension M2Kit.M2API : Swift.Sendable {}
|
|||||||
extension M2Kit.M2Backup : Swift.Sendable {}
|
extension M2Kit.M2Backup : Swift.Sendable {}
|
||||||
extension M2Kit.M2Feedback : Swift.Sendable {}
|
extension M2Kit.M2Feedback : Swift.Sendable {}
|
||||||
extension M2Kit.M2HTTP : Swift.Sendable {}
|
extension M2Kit.M2HTTP : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2IAP : Swift.Sendable {}
|
||||||
extension M2Kit.M2Image : Swift.Sendable {}
|
extension M2Kit.M2Image : Swift.Sendable {}
|
||||||
extension M2Kit.M2K : Swift.Sendable {}
|
extension M2Kit.M2K : Swift.Sendable {}
|
||||||
extension M2Kit.M2Log : Swift.Sendable {}
|
extension M2Kit.M2Log : Swift.Sendable {}
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@ -595,6 +595,24 @@ public let m2Version: Swift.String
|
|||||||
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2IAP {
|
||||||
|
@_Concurrency.MainActor public static let IAPPurchasedSuccessNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPPurchasedFailNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPProductStatusUpdatedNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPProductsAvailableChangedNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static func setup(iapId: Swift.String)
|
||||||
|
@_Concurrency.MainActor public static var isProVersion: Swift.Bool {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
@_Concurrency.MainActor public static var priceProVersion: Swift.String? {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@_Concurrency.MainActor public static func fetch()
|
||||||
|
@_Concurrency.MainActor public static func purchaseProVersion()
|
||||||
|
@_Concurrency.MainActor public static func restorePurchase()
|
||||||
|
}
|
||||||
@_Concurrency.MainActor public struct M2Image {
|
@_Concurrency.MainActor public struct M2Image {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
@ -988,6 +1006,9 @@ extension M2Kit.M2Utils {
|
|||||||
@_Concurrency.MainActor public static func randomCode7() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode7() -> Swift.String
|
||||||
@_Concurrency.MainActor public static func randomCode11() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode11() -> Swift.String
|
||||||
}
|
}
|
||||||
|
extension M2Kit.M2Utils {
|
||||||
|
@_Concurrency.MainActor public static func weightedRandom(from items: [Swift.String], weights: [Swift.Int]) -> Swift.String
|
||||||
|
}
|
||||||
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
||||||
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
@ -1037,6 +1058,7 @@ extension M2Kit.M2API : Swift.Sendable {}
|
|||||||
extension M2Kit.M2Backup : Swift.Sendable {}
|
extension M2Kit.M2Backup : Swift.Sendable {}
|
||||||
extension M2Kit.M2Feedback : Swift.Sendable {}
|
extension M2Kit.M2Feedback : Swift.Sendable {}
|
||||||
extension M2Kit.M2HTTP : Swift.Sendable {}
|
extension M2Kit.M2HTTP : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2IAP : Swift.Sendable {}
|
||||||
extension M2Kit.M2Image : Swift.Sendable {}
|
extension M2Kit.M2Image : Swift.Sendable {}
|
||||||
extension M2Kit.M2K : Swift.Sendable {}
|
extension M2Kit.M2K : Swift.Sendable {}
|
||||||
extension M2Kit.M2Log : Swift.Sendable {}
|
extension M2Kit.M2Log : Swift.Sendable {}
|
||||||
|
|||||||
Binary file not shown.
@ -595,6 +595,24 @@ public let m2Version: Swift.String
|
|||||||
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
@_Concurrency.MainActor public static func getImageData(url: Foundation.URL) async -> Foundation.Data?
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@_Concurrency.MainActor public struct M2IAP {
|
||||||
|
@_Concurrency.MainActor public static let IAPPurchasedSuccessNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPPurchasedFailNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPProductStatusUpdatedNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static let IAPProductsAvailableChangedNotification: Foundation.Notification.Name
|
||||||
|
@_Concurrency.MainActor public static func setup(iapId: Swift.String)
|
||||||
|
@_Concurrency.MainActor public static var isProVersion: Swift.Bool {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
|
@_Concurrency.MainActor public static var priceProVersion: Swift.String? {
|
||||||
|
get
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
@_Concurrency.MainActor public static func fetch()
|
||||||
|
@_Concurrency.MainActor public static func purchaseProVersion()
|
||||||
|
@_Concurrency.MainActor public static func restorePurchase()
|
||||||
|
}
|
||||||
@_Concurrency.MainActor public struct M2Image {
|
@_Concurrency.MainActor public struct M2Image {
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
@_Concurrency.MainActor public static func uploadImage(_ image: UIKit.UIImage, result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||||
@ -988,6 +1006,9 @@ extension M2Kit.M2Utils {
|
|||||||
@_Concurrency.MainActor public static func randomCode7() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode7() -> Swift.String
|
||||||
@_Concurrency.MainActor public static func randomCode11() -> Swift.String
|
@_Concurrency.MainActor public static func randomCode11() -> Swift.String
|
||||||
}
|
}
|
||||||
|
extension M2Kit.M2Utils {
|
||||||
|
@_Concurrency.MainActor public static func weightedRandom(from items: [Swift.String], weights: [Swift.Int]) -> Swift.String
|
||||||
|
}
|
||||||
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor public class M2WebVC : UIKit.UIViewController {
|
||||||
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
@_Concurrency.MainActor @objc override dynamic public func viewDidLoad()
|
||||||
#if compiler(>=5.3) && $NonescapableTypes
|
#if compiler(>=5.3) && $NonescapableTypes
|
||||||
@ -1037,6 +1058,7 @@ extension M2Kit.M2API : Swift.Sendable {}
|
|||||||
extension M2Kit.M2Backup : Swift.Sendable {}
|
extension M2Kit.M2Backup : Swift.Sendable {}
|
||||||
extension M2Kit.M2Feedback : Swift.Sendable {}
|
extension M2Kit.M2Feedback : Swift.Sendable {}
|
||||||
extension M2Kit.M2HTTP : Swift.Sendable {}
|
extension M2Kit.M2HTTP : Swift.Sendable {}
|
||||||
|
extension M2Kit.M2IAP : Swift.Sendable {}
|
||||||
extension M2Kit.M2Image : Swift.Sendable {}
|
extension M2Kit.M2Image : Swift.Sendable {}
|
||||||
extension M2Kit.M2K : Swift.Sendable {}
|
extension M2Kit.M2K : Swift.Sendable {}
|
||||||
extension M2Kit.M2Log : Swift.Sendable {}
|
extension M2Kit.M2Log : Swift.Sendable {}
|
||||||
|
|||||||
Binary file not shown.
@ -10,47 +10,47 @@
|
|||||||
</data>
|
</data>
|
||||||
<key>Info.plist</key>
|
<key>Info.plist</key>
|
||||||
<data>
|
<data>
|
||||||
F1GVPga+1MtTowhQcTnCvoU6iwk=
|
FRjNoxjlQ0HHFtj+xiPYLxsC4+Q=
|
||||||
</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>
|
||||||
uK1egN4TNOpqI7LfhzYdECB404U=
|
h+ZdUC/y+/SbJnC1H05D/x0D2ME=
|
||||||
</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>
|
||||||
b6yGoZe2t5JFyvbc+bBp9mmxeKE=
|
OcFGPcgxy3roT4fVDIuhjSGcLLY=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
||||||
<data>
|
<data>
|
||||||
mGsi25c1yMSjB7OanA3YwDEY2C4=
|
rlhF4Sz85tsVwXP20cC7sxNVfdU=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
||||||
<data>
|
<data>
|
||||||
b6yGoZe2t5JFyvbc+bBp9mmxeKE=
|
OcFGPcgxy3roT4fVDIuhjSGcLLY=
|
||||||
</data>
|
</data>
|
||||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
||||||
<data>
|
<data>
|
||||||
pONqmJyaiprWE/9iY2KmMSWulvA=
|
mMG8n8Xb/FuwSAe6tXQyUr8lCUI=
|
||||||
</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>
|
||||||
uK1egN4TNOpqI7LfhzYdECB404U=
|
h+ZdUC/y+/SbJnC1H05D/x0D2ME=
|
||||||
</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>
|
||||||
zf7PafSmD94pQk6yva+ngEeoRIY=
|
XadabFR8pCLxM/8uvKye4N5kTUM=
|
||||||
</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>
|
||||||
m2SRc74BLjFj2H7rXNwCPCYEbS8=
|
Zzze8UGkFrW7XhH60dG4nj8V5Gg=
|
||||||
</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>
|
||||||
zf7PafSmD94pQk6yva+ngEeoRIY=
|
XadabFR8pCLxM/8uvKye4N5kTUM=
|
||||||
</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>
|
||||||
3naz0cDbHYzwcnqILYiXHU436HA=
|
HzHkZpOsmRcX/6rVtUt1Th9eO+I=
|
||||||
</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>
|
||||||
rHk40s7rQxbLPT9NkWT16ILlNL/OlJKGOr+20vkQEXU=
|
ob5Jsi9geYadWUeV85kX/cI3KLBRsbfyd9nUdZQovAY=
|
||||||
</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>
|
||||||
EwepU1vAFF7E+qGAi9oiNXLg1pHkZRPNiDnm/kfiuO8=
|
cwfjW3BIFRJiUdxACLBrvrxqDrhsXkIaLPFnyC9xvcM=
|
||||||
</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>
|
||||||
PMfh7t7+W3JA71o5N/0ChUYXI4KBxqZS/IpnpnY6QPg=
|
HkOh7YMxbzgmADJSjeS6vE/GEBHJjmNIwp59t2yolt0=
|
||||||
</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>
|
||||||
EwepU1vAFF7E+qGAi9oiNXLg1pHkZRPNiDnm/kfiuO8=
|
cwfjW3BIFRJiUdxACLBrvrxqDrhsXkIaLPFnyC9xvcM=
|
||||||
</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>
|
||||||
5M1ymOr4rh3ZTfsDV/NshEt1SFyxOEVdLmI9gsxfq2c=
|
kqNVRVW11QmJeY3GaAfqhhqwp5Lu+DFG/b1JSnvaz60=
|
||||||
</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>
|
||||||
rHk40s7rQxbLPT9NkWT16ILlNL/OlJKGOr+20vkQEXU=
|
ob5Jsi9geYadWUeV85kX/cI3KLBRsbfyd9nUdZQovAY=
|
||||||
</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>
|
||||||
6kqR1FYRQ0rIeasslvLTM1JgnpdAvjVB4dYH5fkcPFM=
|
0YIE1xj3KR075SX8jupikjyqMvQnnpCSEx2iqRNYEaA=
|
||||||
</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>
|
||||||
AJ2OmJCDNyyMLRxmu4EN5UtnBcccd912jR4MGtk9uV0=
|
XH0bXNW1ZMj5LIOrWPrDm8pg+nh6d78GNxYSnS5wpzY=
|
||||||
</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>
|
||||||
6kqR1FYRQ0rIeasslvLTM1JgnpdAvjVB4dYH5fkcPFM=
|
0YIE1xj3KR075SX8jupikjyqMvQnnpCSEx2iqRNYEaA=
|
||||||
</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>
|
||||||
ZDBqk1Ka7dWp9VvdA5J5yR2I7H0pZh8PvAyC0vQTGY8=
|
tCBElf68iYsYRJ6+CzvQVAHG70q7J+77ZjNGAOIqkt4=
|
||||||
</data>
|
</data>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Modules/module.modulemap</key>
|
<key>Modules/module.modulemap</key>
|
||||||
|
|||||||
@ -11,7 +11,7 @@ let package = Package(
|
|||||||
products: [
|
products: [
|
||||||
.library(
|
.library(
|
||||||
name: "M2Kit",
|
name: "M2Kit",
|
||||||
targets: ["M2Kit"]
|
targets: ["M2KitWrapper"]
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
targets: [
|
targets: [
|
||||||
@ -19,5 +19,13 @@ let package = Package(
|
|||||||
name: "M2Kit",
|
name: "M2Kit",
|
||||||
path: "./Frameworks/M2Kit.xcframework"
|
path: "./Frameworks/M2Kit.xcframework"
|
||||||
),
|
),
|
||||||
|
.target(
|
||||||
|
name: "M2KitWrapper",
|
||||||
|
dependencies: ["M2Kit"],
|
||||||
|
path: "Sources/M2KitWrapper",
|
||||||
|
resources: [
|
||||||
|
.copy("Resources/M2Kit.bundle")
|
||||||
|
]
|
||||||
|
),
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|||||||
1
Sources/M2KitWrapper/M2KitWrapper.swift
Normal file
1
Sources/M2KitWrapper/M2KitWrapper.swift
Normal file
@ -0,0 +1 @@
|
|||||||
|
@_exported import M2Kit
|
||||||
Reference in New Issue
Block a user