@shortkitsdk/react-native 0.2.22 → 0.2.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/libs/shortkit-release.aar +0 -0
- package/ios/ShortKitModule.mm +2 -2
- package/ios/ShortKitSDK.xcframework/Info.plist +5 -5
- package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/Info.plist +2 -2
- package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios.abi.json +1576 -158
- package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios.private.swiftinterface +40 -0
- package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios.swiftinterface +40 -0
- package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/ShortKitSDK +0 -0
- package/ios/ShortKitSDK.xcframework/ios-arm64/ShortKitSDK.framework/_CodeSignature/CodeResources +9 -9
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Info.plist +2 -2
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios-simulator.abi.json +1576 -158
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +40 -0
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface +40 -0
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json +1576 -158
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +40 -0
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/Modules/ShortKitSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +40 -0
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/ShortKitSDK +0 -0
- package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/_CodeSignature/CodeResources +17 -17
- package/package.json +1 -1
|
@@ -337,6 +337,34 @@ extension ShortKitSDK.ShortKitDelegate {
|
|
|
337
337
|
public func shortKit(_ shortKit: ShortKitSDK.ShortKit, didTapContent contentId: Swift.String, at index: Swift.Int)
|
|
338
338
|
public func shortKit(_ shortKit: ShortKitSDK.ShortKit, didFetchContentItems items: [ShortKitSDK.ContentItem])
|
|
339
339
|
}
|
|
340
|
+
public protocol ShortKitDownloadDelegate : AnyObject {
|
|
341
|
+
func shortKit(_ shortKit: ShortKitSDK.ShortKit, didStartDownload item: ShortKitSDK.ContentItem)
|
|
342
|
+
func shortKit(_ shortKit: ShortKitSDK.ShortKit, didUpdateDownloadProgress item: ShortKitSDK.ContentItem, progress: Swift.Double)
|
|
343
|
+
func shortKit(_ shortKit: ShortKitSDK.ShortKit, didCompleteDownload item: ShortKitSDK.ContentItem, fileURL: Foundation.URL)
|
|
344
|
+
func shortKit(_ shortKit: ShortKitSDK.ShortKit, didFailDownload item: ShortKitSDK.ContentItem, error: ShortKitSDK.ShortKitDownloadError)
|
|
345
|
+
}
|
|
346
|
+
extension ShortKitSDK.ShortKitDownloadDelegate {
|
|
347
|
+
public func shortKit(_ shortKit: ShortKitSDK.ShortKit, didStartDownload item: ShortKitSDK.ContentItem)
|
|
348
|
+
public func shortKit(_ shortKit: ShortKitSDK.ShortKit, didUpdateDownloadProgress item: ShortKitSDK.ContentItem, progress: Swift.Double)
|
|
349
|
+
public func shortKit(_ shortKit: ShortKitSDK.ShortKit, didCompleteDownload item: ShortKitSDK.ContentItem, fileURL: Foundation.URL)
|
|
350
|
+
public func shortKit(_ shortKit: ShortKitSDK.ShortKit, didFailDownload item: ShortKitSDK.ContentItem, error: ShortKitSDK.ShortKitDownloadError)
|
|
351
|
+
}
|
|
352
|
+
public enum DownloadMode {
|
|
353
|
+
case nonInterruptive
|
|
354
|
+
case interruptive
|
|
355
|
+
public static func == (a: ShortKitSDK.DownloadMode, b: ShortKitSDK.DownloadMode) -> Swift.Bool
|
|
356
|
+
public func hash(into hasher: inout Swift.Hasher)
|
|
357
|
+
public var hashValue: Swift.Int {
|
|
358
|
+
get
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
public enum ShortKitDownloadError : Swift.Error {
|
|
362
|
+
case downloadNotAvailable
|
|
363
|
+
case downloadInProgress
|
|
364
|
+
case networkError(any Swift.Error)
|
|
365
|
+
case httpError(statusCode: Swift.Int)
|
|
366
|
+
case cancelled
|
|
367
|
+
}
|
|
340
368
|
@_hasMissingDesignatedInitializers final public class FeedPreload : @unchecked Swift.Sendable {
|
|
341
369
|
@objc deinit
|
|
342
370
|
}
|
|
@@ -479,10 +507,17 @@ public struct ContentItem : Swift.Codable, Swift.Equatable, @unchecked Swift.Sen
|
|
|
479
507
|
public let articleUrl: Swift.String?
|
|
480
508
|
public let commentCount: Swift.Int?
|
|
481
509
|
public var fallbackUrl: Swift.String?
|
|
510
|
+
public var downloadUrl: Swift.String?
|
|
511
|
+
public init(id: Swift.String, playbackId: Swift.String? = nil, title: Swift.String, description: Swift.String? = nil, duration: Swift.Double, streamingUrl: Swift.String, thumbnailUrl: Swift.String, captionTracks: [ShortKitSDK.CaptionTrack] = [], customMetadata: [Swift.String : ShortKitSDK.JSONValue]? = nil, author: Swift.String? = nil, articleUrl: Swift.String? = nil, commentCount: Swift.Int? = nil, fallbackUrl: Swift.String? = nil, downloadUrl: Swift.String? = nil)
|
|
482
512
|
public static func == (a: ShortKitSDK.ContentItem, b: ShortKitSDK.ContentItem) -> Swift.Bool
|
|
483
513
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
484
514
|
public init(from decoder: any Swift.Decoder) throws
|
|
485
515
|
}
|
|
516
|
+
extension ShortKitSDK.ContentItem {
|
|
517
|
+
public var isDownloadable: Swift.Bool {
|
|
518
|
+
get
|
|
519
|
+
}
|
|
520
|
+
}
|
|
486
521
|
public enum FeedInput : Swift.Sendable {
|
|
487
522
|
case video(playbackId: Swift.String, fallbackUrl: Swift.String? = nil)
|
|
488
523
|
case imageCarousel(ShortKitSDK.ImageCarouselItem)
|
|
@@ -884,6 +919,7 @@ final public class ShortKit {
|
|
|
884
919
|
final public let player: ShortKitSDK.ShortKitPlayer
|
|
885
920
|
final public let debugPanelEnabled: Swift.Bool
|
|
886
921
|
weak final public var delegate: (any ShortKitSDK.ShortKitDelegate)?
|
|
922
|
+
weak final public var downloadDelegate: (any ShortKitSDK.ShortKitDownloadDelegate)?
|
|
887
923
|
final public var loadingViewProvider: (() -> UIKit.UIView)?
|
|
888
924
|
public init(apiKey: Swift.String, userId: Swift.String? = nil, adProvider: (any ShortKitSDK.ShortKitAdProvider)? = nil, clientAppName: Swift.String? = nil, clientAppVersion: Swift.String? = nil, customDimensions: [Swift.String : Swift.String]? = nil, loadingViewProvider: (() -> UIKit.UIView)? = nil, debugPanelEnabled: Swift.Bool = false)
|
|
889
925
|
final public func preloadFeed(filter: ShortKitSDK.FeedFilter? = nil, limit: Swift.Int = 10) -> ShortKitSDK.FeedPreload
|
|
@@ -893,6 +929,8 @@ final public class ShortKit {
|
|
|
893
929
|
final public func clearUserId()
|
|
894
930
|
@_Concurrency.MainActor final public func setColdStartQueue(_ items: [ShortKitSDK.FeedInput])
|
|
895
931
|
final public func clearColdStartCache()
|
|
932
|
+
final public func downloadVideo(_ item: ShortKitSDK.ContentItem, mode: ShortKitSDK.DownloadMode = .nonInterruptive) async throws -> Foundation.URL
|
|
933
|
+
final public func cancelDownload()
|
|
896
934
|
@objc deinit
|
|
897
935
|
}
|
|
898
936
|
public enum PlayerClickAction : Swift.Sendable {
|
|
@@ -984,6 +1022,8 @@ extension ShortKitSDK.FeedSource : Swift.RawRepresentable {}
|
|
|
984
1022
|
extension ShortKitSDK.SwipeCurve : Swift.Equatable {}
|
|
985
1023
|
extension ShortKitSDK.SwipeCurve : Swift.Hashable {}
|
|
986
1024
|
extension ShortKitSDK.SwipeCurve : Swift.RawRepresentable {}
|
|
1025
|
+
extension ShortKitSDK.DownloadMode : Swift.Equatable {}
|
|
1026
|
+
extension ShortKitSDK.DownloadMode : Swift.Hashable {}
|
|
987
1027
|
extension ShortKitSDK.ShortKitFeedView : Swift.Sendable {}
|
|
988
1028
|
extension ShortKitSDK.CaptionSource : Swift.Equatable {}
|
|
989
1029
|
extension ShortKitSDK.CaptionSource : Swift.Hashable {}
|
|
Binary file
|
|
@@ -337,6 +337,34 @@ extension ShortKitSDK.ShortKitDelegate {
|
|
|
337
337
|
public func shortKit(_ shortKit: ShortKitSDK.ShortKit, didTapContent contentId: Swift.String, at index: Swift.Int)
|
|
338
338
|
public func shortKit(_ shortKit: ShortKitSDK.ShortKit, didFetchContentItems items: [ShortKitSDK.ContentItem])
|
|
339
339
|
}
|
|
340
|
+
public protocol ShortKitDownloadDelegate : AnyObject {
|
|
341
|
+
func shortKit(_ shortKit: ShortKitSDK.ShortKit, didStartDownload item: ShortKitSDK.ContentItem)
|
|
342
|
+
func shortKit(_ shortKit: ShortKitSDK.ShortKit, didUpdateDownloadProgress item: ShortKitSDK.ContentItem, progress: Swift.Double)
|
|
343
|
+
func shortKit(_ shortKit: ShortKitSDK.ShortKit, didCompleteDownload item: ShortKitSDK.ContentItem, fileURL: Foundation.URL)
|
|
344
|
+
func shortKit(_ shortKit: ShortKitSDK.ShortKit, didFailDownload item: ShortKitSDK.ContentItem, error: ShortKitSDK.ShortKitDownloadError)
|
|
345
|
+
}
|
|
346
|
+
extension ShortKitSDK.ShortKitDownloadDelegate {
|
|
347
|
+
public func shortKit(_ shortKit: ShortKitSDK.ShortKit, didStartDownload item: ShortKitSDK.ContentItem)
|
|
348
|
+
public func shortKit(_ shortKit: ShortKitSDK.ShortKit, didUpdateDownloadProgress item: ShortKitSDK.ContentItem, progress: Swift.Double)
|
|
349
|
+
public func shortKit(_ shortKit: ShortKitSDK.ShortKit, didCompleteDownload item: ShortKitSDK.ContentItem, fileURL: Foundation.URL)
|
|
350
|
+
public func shortKit(_ shortKit: ShortKitSDK.ShortKit, didFailDownload item: ShortKitSDK.ContentItem, error: ShortKitSDK.ShortKitDownloadError)
|
|
351
|
+
}
|
|
352
|
+
public enum DownloadMode {
|
|
353
|
+
case nonInterruptive
|
|
354
|
+
case interruptive
|
|
355
|
+
public static func == (a: ShortKitSDK.DownloadMode, b: ShortKitSDK.DownloadMode) -> Swift.Bool
|
|
356
|
+
public func hash(into hasher: inout Swift.Hasher)
|
|
357
|
+
public var hashValue: Swift.Int {
|
|
358
|
+
get
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
public enum ShortKitDownloadError : Swift.Error {
|
|
362
|
+
case downloadNotAvailable
|
|
363
|
+
case downloadInProgress
|
|
364
|
+
case networkError(any Swift.Error)
|
|
365
|
+
case httpError(statusCode: Swift.Int)
|
|
366
|
+
case cancelled
|
|
367
|
+
}
|
|
340
368
|
@_hasMissingDesignatedInitializers final public class FeedPreload : @unchecked Swift.Sendable {
|
|
341
369
|
@objc deinit
|
|
342
370
|
}
|
|
@@ -479,10 +507,17 @@ public struct ContentItem : Swift.Codable, Swift.Equatable, @unchecked Swift.Sen
|
|
|
479
507
|
public let articleUrl: Swift.String?
|
|
480
508
|
public let commentCount: Swift.Int?
|
|
481
509
|
public var fallbackUrl: Swift.String?
|
|
510
|
+
public var downloadUrl: Swift.String?
|
|
511
|
+
public init(id: Swift.String, playbackId: Swift.String? = nil, title: Swift.String, description: Swift.String? = nil, duration: Swift.Double, streamingUrl: Swift.String, thumbnailUrl: Swift.String, captionTracks: [ShortKitSDK.CaptionTrack] = [], customMetadata: [Swift.String : ShortKitSDK.JSONValue]? = nil, author: Swift.String? = nil, articleUrl: Swift.String? = nil, commentCount: Swift.Int? = nil, fallbackUrl: Swift.String? = nil, downloadUrl: Swift.String? = nil)
|
|
482
512
|
public static func == (a: ShortKitSDK.ContentItem, b: ShortKitSDK.ContentItem) -> Swift.Bool
|
|
483
513
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
484
514
|
public init(from decoder: any Swift.Decoder) throws
|
|
485
515
|
}
|
|
516
|
+
extension ShortKitSDK.ContentItem {
|
|
517
|
+
public var isDownloadable: Swift.Bool {
|
|
518
|
+
get
|
|
519
|
+
}
|
|
520
|
+
}
|
|
486
521
|
public enum FeedInput : Swift.Sendable {
|
|
487
522
|
case video(playbackId: Swift.String, fallbackUrl: Swift.String? = nil)
|
|
488
523
|
case imageCarousel(ShortKitSDK.ImageCarouselItem)
|
|
@@ -884,6 +919,7 @@ final public class ShortKit {
|
|
|
884
919
|
final public let player: ShortKitSDK.ShortKitPlayer
|
|
885
920
|
final public let debugPanelEnabled: Swift.Bool
|
|
886
921
|
weak final public var delegate: (any ShortKitSDK.ShortKitDelegate)?
|
|
922
|
+
weak final public var downloadDelegate: (any ShortKitSDK.ShortKitDownloadDelegate)?
|
|
887
923
|
final public var loadingViewProvider: (() -> UIKit.UIView)?
|
|
888
924
|
public init(apiKey: Swift.String, userId: Swift.String? = nil, adProvider: (any ShortKitSDK.ShortKitAdProvider)? = nil, clientAppName: Swift.String? = nil, clientAppVersion: Swift.String? = nil, customDimensions: [Swift.String : Swift.String]? = nil, loadingViewProvider: (() -> UIKit.UIView)? = nil, debugPanelEnabled: Swift.Bool = false)
|
|
889
925
|
final public func preloadFeed(filter: ShortKitSDK.FeedFilter? = nil, limit: Swift.Int = 10) -> ShortKitSDK.FeedPreload
|
|
@@ -893,6 +929,8 @@ final public class ShortKit {
|
|
|
893
929
|
final public func clearUserId()
|
|
894
930
|
@_Concurrency.MainActor final public func setColdStartQueue(_ items: [ShortKitSDK.FeedInput])
|
|
895
931
|
final public func clearColdStartCache()
|
|
932
|
+
final public func downloadVideo(_ item: ShortKitSDK.ContentItem, mode: ShortKitSDK.DownloadMode = .nonInterruptive) async throws -> Foundation.URL
|
|
933
|
+
final public func cancelDownload()
|
|
896
934
|
@objc deinit
|
|
897
935
|
}
|
|
898
936
|
public enum PlayerClickAction : Swift.Sendable {
|
|
@@ -984,6 +1022,8 @@ extension ShortKitSDK.FeedSource : Swift.RawRepresentable {}
|
|
|
984
1022
|
extension ShortKitSDK.SwipeCurve : Swift.Equatable {}
|
|
985
1023
|
extension ShortKitSDK.SwipeCurve : Swift.Hashable {}
|
|
986
1024
|
extension ShortKitSDK.SwipeCurve : Swift.RawRepresentable {}
|
|
1025
|
+
extension ShortKitSDK.DownloadMode : Swift.Equatable {}
|
|
1026
|
+
extension ShortKitSDK.DownloadMode : Swift.Hashable {}
|
|
987
1027
|
extension ShortKitSDK.ShortKitFeedView : Swift.Sendable {}
|
|
988
1028
|
extension ShortKitSDK.CaptionSource : Swift.Equatable {}
|
|
989
1029
|
extension ShortKitSDK.CaptionSource : Swift.Hashable {}
|
package/ios/ShortKitSDK.xcframework/ios-arm64_x86_64-simulator/ShortKitSDK.framework/ShortKitSDK
CHANGED
|
Binary file
|
|
@@ -10,39 +10,39 @@
|
|
|
10
10
|
</data>
|
|
11
11
|
<key>Info.plist</key>
|
|
12
12
|
<data>
|
|
13
|
-
|
|
13
|
+
slY81X2CJlE1Pc6TjenuCp90CSs=
|
|
14
14
|
</data>
|
|
15
15
|
<key>Modules/ShortKitSDK.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
|
|
16
16
|
<data>
|
|
17
|
-
|
|
17
|
+
0TmEtkdyeDtGF9z1GonyKRX1OIk=
|
|
18
18
|
</data>
|
|
19
19
|
<key>Modules/ShortKitSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
|
20
20
|
<data>
|
|
21
|
-
|
|
21
|
+
EyeJYhkTLApLeAoODyn7P3qdVZY=
|
|
22
22
|
</data>
|
|
23
23
|
<key>Modules/ShortKitSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
|
24
24
|
<data>
|
|
25
|
-
|
|
25
|
+
HE+XPfFpv4kMMRInspsxHhhXkw4=
|
|
26
26
|
</data>
|
|
27
27
|
<key>Modules/ShortKitSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
|
28
28
|
<data>
|
|
29
|
-
|
|
29
|
+
EyeJYhkTLApLeAoODyn7P3qdVZY=
|
|
30
30
|
</data>
|
|
31
31
|
<key>Modules/ShortKitSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
|
32
32
|
<data>
|
|
33
|
-
|
|
33
|
+
0TmEtkdyeDtGF9z1GonyKRX1OIk=
|
|
34
34
|
</data>
|
|
35
35
|
<key>Modules/ShortKitSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
|
36
36
|
<data>
|
|
37
|
-
|
|
37
|
+
9KZgxBHMYkTCwRzoy4Ka8H+EAgY=
|
|
38
38
|
</data>
|
|
39
39
|
<key>Modules/ShortKitSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
|
|
40
40
|
<data>
|
|
41
|
-
|
|
41
|
+
pGKYJUkUKWstUmgNirkMz9UZfXw=
|
|
42
42
|
</data>
|
|
43
43
|
<key>Modules/ShortKitSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
|
|
44
44
|
<data>
|
|
45
|
-
|
|
45
|
+
9KZgxBHMYkTCwRzoy4Ka8H+EAgY=
|
|
46
46
|
</data>
|
|
47
47
|
<key>Modules/module.modulemap</key>
|
|
48
48
|
<data>
|
|
@@ -66,56 +66,56 @@
|
|
|
66
66
|
<dict>
|
|
67
67
|
<key>hash2</key>
|
|
68
68
|
<data>
|
|
69
|
-
|
|
69
|
+
8YuVfF0QAXEqQa3D9XBHjhehjxHFdKOWvdGWcWcpL1I=
|
|
70
70
|
</data>
|
|
71
71
|
</dict>
|
|
72
72
|
<key>Modules/ShortKitSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
|
73
73
|
<dict>
|
|
74
74
|
<key>hash2</key>
|
|
75
75
|
<data>
|
|
76
|
-
|
|
76
|
+
YocaRcQ6ILnEzQPEMCG/TpddeUKnFr5CCG6d7lwMs6c=
|
|
77
77
|
</data>
|
|
78
78
|
</dict>
|
|
79
79
|
<key>Modules/ShortKitSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
|
80
80
|
<dict>
|
|
81
81
|
<key>hash2</key>
|
|
82
82
|
<data>
|
|
83
|
-
|
|
83
|
+
8D3JzqWKNEUX1+kjgT8Fm/WQRi9dkyAGOowk2wYL2eM=
|
|
84
84
|
</data>
|
|
85
85
|
</dict>
|
|
86
86
|
<key>Modules/ShortKitSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
|
87
87
|
<dict>
|
|
88
88
|
<key>hash2</key>
|
|
89
89
|
<data>
|
|
90
|
-
|
|
90
|
+
YocaRcQ6ILnEzQPEMCG/TpddeUKnFr5CCG6d7lwMs6c=
|
|
91
91
|
</data>
|
|
92
92
|
</dict>
|
|
93
93
|
<key>Modules/ShortKitSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
|
94
94
|
<dict>
|
|
95
95
|
<key>hash2</key>
|
|
96
96
|
<data>
|
|
97
|
-
|
|
97
|
+
8YuVfF0QAXEqQa3D9XBHjhehjxHFdKOWvdGWcWcpL1I=
|
|
98
98
|
</data>
|
|
99
99
|
</dict>
|
|
100
100
|
<key>Modules/ShortKitSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
|
101
101
|
<dict>
|
|
102
102
|
<key>hash2</key>
|
|
103
103
|
<data>
|
|
104
|
-
|
|
104
|
+
une5ImatYPq9T1HlZHjrO8WrjG1AM7s7ft783RqMgSU=
|
|
105
105
|
</data>
|
|
106
106
|
</dict>
|
|
107
107
|
<key>Modules/ShortKitSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
|
|
108
108
|
<dict>
|
|
109
109
|
<key>hash2</key>
|
|
110
110
|
<data>
|
|
111
|
-
|
|
111
|
+
Jv93EDTJvoM0SmW3gXGty+JtS4YoRc2PxBLpd8aPvYw=
|
|
112
112
|
</data>
|
|
113
113
|
</dict>
|
|
114
114
|
<key>Modules/ShortKitSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
|
|
115
115
|
<dict>
|
|
116
116
|
<key>hash2</key>
|
|
117
117
|
<data>
|
|
118
|
-
|
|
118
|
+
une5ImatYPq9T1HlZHjrO8WrjG1AM7s7ft783RqMgSU=
|
|
119
119
|
</data>
|
|
120
120
|
</dict>
|
|
121
121
|
<key>Modules/module.modulemap</key>
|