Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 63522ae598 | |||
| d02221f9cd | |||
| 0a3921b586 |
@ -4,23 +4,6 @@
|
||||
<dict>
|
||||
<key>AvailableLibraries</key>
|
||||
<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>
|
||||
<key>BinaryPath</key>
|
||||
<string>M2Kit.framework/M2Kit</string>
|
||||
@ -52,6 +35,23 @@
|
||||
<key>SupportedPlatformVariant</key>
|
||||
<string>simulator</string>
|
||||
</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>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>XFWK</string>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -494,16 +494,19 @@ public let m2Version: Swift.String
|
||||
@_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 IAPUserCancelActionNotification: 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 isEnable: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static var isProVersion: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static var priceProVersion: Swift.String? {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static func fetch()
|
||||
@_Concurrency.MainActor public static func purchaseProVersion()
|
||||
@_Concurrency.MainActor public static func restorePurchase()
|
||||
}
|
||||
@ -570,6 +573,28 @@ extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||
@_Concurrency.MainActor public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func countriesSupported() async -> [[Swift.AnyHashable : Any]]
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func searchStations(title: Swift.String, token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func topStations(token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listGenresForRadio() async -> [[Swift.AnyHashable : Any]]
|
||||
@_Concurrency.MainActor public static func listStationsByGenres(genre: [Swift.AnyHashable : Any], token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func stationInfo(station: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func searchPodcasts(title: Swift.String, token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listEpisodesOfPodcast(podcast: [Swift.AnyHashable : Any], token: Swift.String?) async -> (episodes: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func topPodcasts(token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listGenresForPodcast() async -> [[Swift.AnyHashable : Any]]
|
||||
@_Concurrency.MainActor public static func listPodcastsByGenre(genre: [Swift.AnyHashable : Any], token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func podcastInfo(podcast: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func getLinkPlay(station: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
@_Concurrency.MainActor public static func getLinkPlay(episode: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
@_hasMissingDesignatedInitializers public class M2Setting {
|
||||
public static var option10: Swift.String {
|
||||
get
|
||||
|
||||
Binary file not shown.
@ -494,16 +494,19 @@ public let m2Version: Swift.String
|
||||
@_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 IAPUserCancelActionNotification: 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 isEnable: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static var isProVersion: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static var priceProVersion: Swift.String? {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static func fetch()
|
||||
@_Concurrency.MainActor public static func purchaseProVersion()
|
||||
@_Concurrency.MainActor public static func restorePurchase()
|
||||
}
|
||||
@ -570,6 +573,28 @@ extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||
@_Concurrency.MainActor public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func countriesSupported() async -> [[Swift.AnyHashable : Any]]
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func searchStations(title: Swift.String, token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func topStations(token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listGenresForRadio() async -> [[Swift.AnyHashable : Any]]
|
||||
@_Concurrency.MainActor public static func listStationsByGenres(genre: [Swift.AnyHashable : Any], token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func stationInfo(station: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func searchPodcasts(title: Swift.String, token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listEpisodesOfPodcast(podcast: [Swift.AnyHashable : Any], token: Swift.String?) async -> (episodes: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func topPodcasts(token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listGenresForPodcast() async -> [[Swift.AnyHashable : Any]]
|
||||
@_Concurrency.MainActor public static func listPodcastsByGenre(genre: [Swift.AnyHashable : Any], token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func podcastInfo(podcast: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func getLinkPlay(station: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
@_Concurrency.MainActor public static func getLinkPlay(episode: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
@_hasMissingDesignatedInitializers public class M2Setting {
|
||||
public static var option10: Swift.String {
|
||||
get
|
||||
|
||||
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -494,16 +494,19 @@ public let m2Version: Swift.String
|
||||
@_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 IAPUserCancelActionNotification: 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 isEnable: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static var isProVersion: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static var priceProVersion: Swift.String? {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static func fetch()
|
||||
@_Concurrency.MainActor public static func purchaseProVersion()
|
||||
@_Concurrency.MainActor public static func restorePurchase()
|
||||
}
|
||||
@ -570,6 +573,28 @@ extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||
@_Concurrency.MainActor public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func countriesSupported() async -> [[Swift.AnyHashable : Any]]
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func searchStations(title: Swift.String, token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func topStations(token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listGenresForRadio() async -> [[Swift.AnyHashable : Any]]
|
||||
@_Concurrency.MainActor public static func listStationsByGenres(genre: [Swift.AnyHashable : Any], token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func stationInfo(station: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func searchPodcasts(title: Swift.String, token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listEpisodesOfPodcast(podcast: [Swift.AnyHashable : Any], token: Swift.String?) async -> (episodes: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func topPodcasts(token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listGenresForPodcast() async -> [[Swift.AnyHashable : Any]]
|
||||
@_Concurrency.MainActor public static func listPodcastsByGenre(genre: [Swift.AnyHashable : Any], token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func podcastInfo(podcast: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func getLinkPlay(station: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
@_Concurrency.MainActor public static func getLinkPlay(episode: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
@_hasMissingDesignatedInitializers public class M2Setting {
|
||||
public static var option10: Swift.String {
|
||||
get
|
||||
|
||||
Binary file not shown.
@ -494,16 +494,19 @@ public let m2Version: Swift.String
|
||||
@_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 IAPUserCancelActionNotification: 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 isEnable: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static var isProVersion: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static var priceProVersion: Swift.String? {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static func fetch()
|
||||
@_Concurrency.MainActor public static func purchaseProVersion()
|
||||
@_Concurrency.MainActor public static func restorePurchase()
|
||||
}
|
||||
@ -570,6 +573,28 @@ extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||
@_Concurrency.MainActor public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func countriesSupported() async -> [[Swift.AnyHashable : Any]]
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func searchStations(title: Swift.String, token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func topStations(token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listGenresForRadio() async -> [[Swift.AnyHashable : Any]]
|
||||
@_Concurrency.MainActor public static func listStationsByGenres(genre: [Swift.AnyHashable : Any], token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func stationInfo(station: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func searchPodcasts(title: Swift.String, token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listEpisodesOfPodcast(podcast: [Swift.AnyHashable : Any], token: Swift.String?) async -> (episodes: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func topPodcasts(token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listGenresForPodcast() async -> [[Swift.AnyHashable : Any]]
|
||||
@_Concurrency.MainActor public static func listPodcastsByGenre(genre: [Swift.AnyHashable : Any], token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func podcastInfo(podcast: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func getLinkPlay(station: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
@_Concurrency.MainActor public static func getLinkPlay(episode: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
@_hasMissingDesignatedInitializers public class M2Setting {
|
||||
public static var option10: Swift.String {
|
||||
get
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -494,16 +494,19 @@ public let m2Version: Swift.String
|
||||
@_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 IAPUserCancelActionNotification: 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 isEnable: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static var isProVersion: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static var priceProVersion: Swift.String? {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static func fetch()
|
||||
@_Concurrency.MainActor public static func purchaseProVersion()
|
||||
@_Concurrency.MainActor public static func restorePurchase()
|
||||
}
|
||||
@ -570,6 +573,28 @@ extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||
@_Concurrency.MainActor public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func countriesSupported() async -> [[Swift.AnyHashable : Any]]
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func searchStations(title: Swift.String, token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func topStations(token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listGenresForRadio() async -> [[Swift.AnyHashable : Any]]
|
||||
@_Concurrency.MainActor public static func listStationsByGenres(genre: [Swift.AnyHashable : Any], token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func stationInfo(station: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func searchPodcasts(title: Swift.String, token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listEpisodesOfPodcast(podcast: [Swift.AnyHashable : Any], token: Swift.String?) async -> (episodes: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func topPodcasts(token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listGenresForPodcast() async -> [[Swift.AnyHashable : Any]]
|
||||
@_Concurrency.MainActor public static func listPodcastsByGenre(genre: [Swift.AnyHashable : Any], token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func podcastInfo(podcast: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func getLinkPlay(station: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
@_Concurrency.MainActor public static func getLinkPlay(episode: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
@_hasMissingDesignatedInitializers public class M2Setting {
|
||||
public static var option10: Swift.String {
|
||||
get
|
||||
|
||||
Binary file not shown.
@ -494,16 +494,19 @@ public let m2Version: Swift.String
|
||||
@_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 IAPUserCancelActionNotification: 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 isEnable: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static var isProVersion: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static var priceProVersion: Swift.String? {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static func fetch()
|
||||
@_Concurrency.MainActor public static func purchaseProVersion()
|
||||
@_Concurrency.MainActor public static func restorePurchase()
|
||||
}
|
||||
@ -570,6 +573,28 @@ extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||
@_Concurrency.MainActor public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func countriesSupported() async -> [[Swift.AnyHashable : Any]]
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func searchStations(title: Swift.String, token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func topStations(token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listGenresForRadio() async -> [[Swift.AnyHashable : Any]]
|
||||
@_Concurrency.MainActor public static func listStationsByGenres(genre: [Swift.AnyHashable : Any], token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func stationInfo(station: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func searchPodcasts(title: Swift.String, token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listEpisodesOfPodcast(podcast: [Swift.AnyHashable : Any], token: Swift.String?) async -> (episodes: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func topPodcasts(token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listGenresForPodcast() async -> [[Swift.AnyHashable : Any]]
|
||||
@_Concurrency.MainActor public static func listPodcastsByGenre(genre: [Swift.AnyHashable : Any], token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func podcastInfo(podcast: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func getLinkPlay(station: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
@_Concurrency.MainActor public static func getLinkPlay(episode: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
@_hasMissingDesignatedInitializers public class M2Setting {
|
||||
public static var option10: Swift.String {
|
||||
get
|
||||
|
||||
@ -17,7 +17,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>5.27</string>
|
||||
<string>5.30</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -494,16 +494,19 @@ public let m2Version: Swift.String
|
||||
@_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 IAPUserCancelActionNotification: 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 isEnable: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static var isProVersion: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static var priceProVersion: Swift.String? {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static func fetch()
|
||||
@_Concurrency.MainActor public static func purchaseProVersion()
|
||||
@_Concurrency.MainActor public static func restorePurchase()
|
||||
}
|
||||
@ -570,6 +573,28 @@ extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||
@_Concurrency.MainActor public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func countriesSupported() async -> [[Swift.AnyHashable : Any]]
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func searchStations(title: Swift.String, token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func topStations(token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listGenresForRadio() async -> [[Swift.AnyHashable : Any]]
|
||||
@_Concurrency.MainActor public static func listStationsByGenres(genre: [Swift.AnyHashable : Any], token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func stationInfo(station: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func searchPodcasts(title: Swift.String, token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listEpisodesOfPodcast(podcast: [Swift.AnyHashable : Any], token: Swift.String?) async -> (episodes: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func topPodcasts(token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listGenresForPodcast() async -> [[Swift.AnyHashable : Any]]
|
||||
@_Concurrency.MainActor public static func listPodcastsByGenre(genre: [Swift.AnyHashable : Any], token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func podcastInfo(podcast: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func getLinkPlay(station: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
@_Concurrency.MainActor public static func getLinkPlay(episode: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
@_hasMissingDesignatedInitializers public class M2Setting {
|
||||
public static var option10: Swift.String {
|
||||
get
|
||||
|
||||
Binary file not shown.
@ -494,16 +494,19 @@ public let m2Version: Swift.String
|
||||
@_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 IAPUserCancelActionNotification: 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 isEnable: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static var isProVersion: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static var priceProVersion: Swift.String? {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static func fetch()
|
||||
@_Concurrency.MainActor public static func purchaseProVersion()
|
||||
@_Concurrency.MainActor public static func restorePurchase()
|
||||
}
|
||||
@ -570,6 +573,28 @@ extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||
@_Concurrency.MainActor public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func countriesSupported() async -> [[Swift.AnyHashable : Any]]
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func searchStations(title: Swift.String, token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func topStations(token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listGenresForRadio() async -> [[Swift.AnyHashable : Any]]
|
||||
@_Concurrency.MainActor public static func listStationsByGenres(genre: [Swift.AnyHashable : Any], token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func stationInfo(station: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func searchPodcasts(title: Swift.String, token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listEpisodesOfPodcast(podcast: [Swift.AnyHashable : Any], token: Swift.String?) async -> (episodes: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func topPodcasts(token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listGenresForPodcast() async -> [[Swift.AnyHashable : Any]]
|
||||
@_Concurrency.MainActor public static func listPodcastsByGenre(genre: [Swift.AnyHashable : Any], token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func podcastInfo(podcast: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func getLinkPlay(station: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
@_Concurrency.MainActor public static func getLinkPlay(episode: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
@_hasMissingDesignatedInitializers public class M2Setting {
|
||||
public static var option10: Swift.String {
|
||||
get
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -494,16 +494,19 @@ public let m2Version: Swift.String
|
||||
@_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 IAPUserCancelActionNotification: 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 isEnable: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static var isProVersion: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static var priceProVersion: Swift.String? {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static func fetch()
|
||||
@_Concurrency.MainActor public static func purchaseProVersion()
|
||||
@_Concurrency.MainActor public static func restorePurchase()
|
||||
}
|
||||
@ -570,6 +573,28 @@ extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||
@_Concurrency.MainActor public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func countriesSupported() async -> [[Swift.AnyHashable : Any]]
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func searchStations(title: Swift.String, token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func topStations(token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listGenresForRadio() async -> [[Swift.AnyHashable : Any]]
|
||||
@_Concurrency.MainActor public static func listStationsByGenres(genre: [Swift.AnyHashable : Any], token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func stationInfo(station: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func searchPodcasts(title: Swift.String, token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listEpisodesOfPodcast(podcast: [Swift.AnyHashable : Any], token: Swift.String?) async -> (episodes: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func topPodcasts(token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listGenresForPodcast() async -> [[Swift.AnyHashable : Any]]
|
||||
@_Concurrency.MainActor public static func listPodcastsByGenre(genre: [Swift.AnyHashable : Any], token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func podcastInfo(podcast: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func getLinkPlay(station: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
@_Concurrency.MainActor public static func getLinkPlay(episode: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
@_hasMissingDesignatedInitializers public class M2Setting {
|
||||
public static var option10: Swift.String {
|
||||
get
|
||||
|
||||
Binary file not shown.
@ -494,16 +494,19 @@ public let m2Version: Swift.String
|
||||
@_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 IAPUserCancelActionNotification: 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 isEnable: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static var isProVersion: Swift.Bool {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static var priceProVersion: Swift.String? {
|
||||
get
|
||||
}
|
||||
@_Concurrency.MainActor public static func fetch()
|
||||
@_Concurrency.MainActor public static func purchaseProVersion()
|
||||
@_Concurrency.MainActor public static func restorePurchase()
|
||||
}
|
||||
@ -570,6 +573,28 @@ extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func getLinkPlayEx(station: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||
@_Concurrency.MainActor public static func getLinkPlayEx(episode: [Swift.AnyHashable : Any], result: @escaping (_ url: Swift.String?) -> Swift.Void)
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func countriesSupported() async -> [[Swift.AnyHashable : Any]]
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func searchStations(title: Swift.String, token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func topStations(token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listGenresForRadio() async -> [[Swift.AnyHashable : Any]]
|
||||
@_Concurrency.MainActor public static func listStationsByGenres(genre: [Swift.AnyHashable : Any], token: Swift.String?) async -> (stations: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func stationInfo(station: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func searchPodcasts(title: Swift.String, token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listEpisodesOfPodcast(podcast: [Swift.AnyHashable : Any], token: Swift.String?) async -> (episodes: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func topPodcasts(token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func listGenresForPodcast() async -> [[Swift.AnyHashable : Any]]
|
||||
@_Concurrency.MainActor public static func listPodcastsByGenre(genre: [Swift.AnyHashable : Any], token: Swift.String?) async -> (podcasts: [[Swift.AnyHashable : Any]], nextToken: Swift.String?)
|
||||
@_Concurrency.MainActor public static func podcastInfo(podcast: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
extension M2Kit.M2Radio {
|
||||
@_Concurrency.MainActor public static func getLinkPlay(station: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
@_Concurrency.MainActor public static func getLinkPlay(episode: [Swift.AnyHashable : Any]) async -> Swift.String?
|
||||
}
|
||||
@_hasMissingDesignatedInitializers public class M2Setting {
|
||||
public static var option10: Swift.String {
|
||||
get
|
||||
|
||||
Binary file not shown.
@ -10,47 +10,47 @@
|
||||
</data>
|
||||
<key>Info.plist</key>
|
||||
<data>
|
||||
ROFrsHNNn41Y160APmlhNtjt+LQ=
|
||||
SleqPxws2MeF18s7bAsi3b3gAdA=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
|
||||
<data>
|
||||
VBvwTuSnDOQ1tB3xxrbFm3JeOXA=
|
||||
6wkkxfr7gSUxduDCHu2XUVH5mqs=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
||||
<data>
|
||||
C3dGfDCkrGKZGrHWH9mhcx+28EQ=
|
||||
C/DjXP+39RGzyGp+6hnph2T7Ggw=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
||||
<data>
|
||||
8CyTIEjgb4RKLYkRyCmmAbs8xYw=
|
||||
SSvr+y6ZXqMXP0bAmn52kfYSuro=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
||||
<data>
|
||||
C3dGfDCkrGKZGrHWH9mhcx+28EQ=
|
||||
C/DjXP+39RGzyGp+6hnph2T7Ggw=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
||||
<data>
|
||||
lwHZli6SwJBDqZRK1wA6phBYtrU=
|
||||
cWuVEwkHgiZ0wKbkz+bXgtOBEdA=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
||||
<data>
|
||||
VBvwTuSnDOQ1tB3xxrbFm3JeOXA=
|
||||
6wkkxfr7gSUxduDCHu2XUVH5mqs=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
||||
<data>
|
||||
UsfVebNFJWVdmCObsq67QDsaM54=
|
||||
67ufZbetgqCIouQgOoHeefyuiQQ=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
|
||||
<data>
|
||||
jBEe9jyCAD9+xzqFRhYXRVvraxE=
|
||||
84PRDHxrcuTPrlyUgPuYSCrpbwY=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
|
||||
<data>
|
||||
UsfVebNFJWVdmCObsq67QDsaM54=
|
||||
67ufZbetgqCIouQgOoHeefyuiQQ=
|
||||
</data>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
|
||||
<data>
|
||||
A5EX/zE0uqYzA4nb0tXngeeY+ZA=
|
||||
ljizTtjU6acR99o0hwhP7CmGb80=
|
||||
</data>
|
||||
<key>Modules/module.modulemap</key>
|
||||
<data>
|
||||
@ -70,70 +70,70 @@
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
H2ufbCY9OWpD0FzQ3Pfr73I3ICgjHoCg/kO5Ta+J0SY=
|
||||
IAGovL5skq6thn7aV3Nt5WDxbdiYaNYM9erID2rAHV0=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
bf0MVePd/h7EQqkISv6VhcRJ5SlL9JGrcZWjH4l+e4g=
|
||||
PiHJVcTXDiAQztXz878dXaDDnCuAizNqTdNlCyui6kM=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
+KUj5jTWVEXI5LiT6qiel7T5P3fkUl3sPxR/4Bqxnkg=
|
||||
qzDhJFekK+sg3z8wGfp187bHdDNpBCvLd67/j0J95m4=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
bf0MVePd/h7EQqkISv6VhcRJ5SlL9JGrcZWjH4l+e4g=
|
||||
PiHJVcTXDiAQztXz878dXaDDnCuAizNqTdNlCyui6kM=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
vRUsYRCBfim2eYUO/ATpupsB/Unvsu14lxZqVgCgz9E=
|
||||
KFlMucW2Np1pbbENU443B7UYm1QT6eRw3cVc2P8sxT0=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
H2ufbCY9OWpD0FzQ3Pfr73I3ICgjHoCg/kO5Ta+J0SY=
|
||||
IAGovL5skq6thn7aV3Nt5WDxbdiYaNYM9erID2rAHV0=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
N5/7AiOLP20lfw5PC5YXJay4V61Uv029Me2MWFFh+Gs=
|
||||
6qQNUJ8/hRlOVsRiC1a2bkXQZ70EVyxZk3YPhPQ1uIs=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
m/hXa6qs+jBFvfrNRul7RZq9vDOC9C6ZnmJatPAxAsU=
|
||||
/eVTjH/4exBgWDdqwH4+fbY1x4lBEmeuQdMv5P3zdIQ=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
N5/7AiOLP20lfw5PC5YXJay4V61Uv029Me2MWFFh+Gs=
|
||||
6qQNUJ8/hRlOVsRiC1a2bkXQZ70EVyxZk3YPhPQ1uIs=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/M2Kit.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
|
||||
<dict>
|
||||
<key>hash2</key>
|
||||
<data>
|
||||
rBCNcmIlhzGKigiGMzLA0gi7cZ+N9HLqXqClqEBv8TA=
|
||||
xekHWLj2P7Pq7nzc+UO7lh0mTmos6pxVjh1UqxomKK8=
|
||||
</data>
|
||||
</dict>
|
||||
<key>Modules/module.modulemap</key>
|
||||
|
||||
Reference in New Issue
Block a user