Skip to content

Commit

Permalink
3.1.25
Browse files Browse the repository at this point in the history
  • Loading branch information
runner authored and runner committed Jan 3, 2024
1 parent 319e786 commit 49f1886
Show file tree
Hide file tree
Showing 44 changed files with 114 additions and 66 deletions.
2 changes: 1 addition & 1 deletion Nami.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'Nami'
s.version = '3.1.23'
s.version = '3.1.25'
s.summary = 'Easy Apple StoreKit subscriptions & in-app purchases, with powerful built-in paywalls and A/B testing.'

s.description = <<-DESC
Expand Down
Binary file modified NamiApple.xcframework.zip
Binary file not shown.
14 changes: 7 additions & 7 deletions NamiApple.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,18 @@
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>tvos-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>NamiApple.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<string>tvos</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
Expand All @@ -45,18 +48,15 @@
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>tvos-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>NamiApple.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>tvos</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
<string>ios</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,12 @@ SWIFT_CLASS("_TtC9NamiApple19NamiCampaignManager")
/// \param paywallActionHandler Handler to be invoked when a paywall action occurs during this launch.
///
+ (void)launchWithUrl:(NSURL * _Nonnull)url viewController:(UIViewController * _Nullable)viewController context:(PaywallLaunchContext * _Nullable)context launchHandler:(void (^ _Nullable)(BOOL, NSError * _Nullable))launchHandler paywallActionHandler:(void (^ _Nullable)(NamiPaywallEvent * _Nonnull))paywallActionHandler;
/// Provide the list of product groups supported by the provided placement label
/// \param label Campaign placement label defined in Nami Control Center for launching a specific campaign.
///
/// \param url Campaign placement URL defined in Nami Control Center for launching a specific campaign.
///
+ (NSArray<NSString *> * _Nonnull)productGroupsWithLabel:(NSString * _Nullable)label url:(NSURL * _Nullable)url SWIFT_WARN_UNUSED_RESULT;
@end


Expand Down
Binary file modified NamiApple.xcframework/ios-arm64/NamiApple.framework/Info.plist
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -636,6 +636,7 @@ public typealias NamiAvailableCampaignsResponseHandler = (_ availableCampaigns:
@objc public static func launch(label: Swift.String? = .none, context: NamiApple.PaywallLaunchContext? = .none, launchHandler: NamiApple.CampaignLaunchHandler? = .none, paywallActionHandler: NamiApple.NamiPaywallActionHandler? = .none)
@objc public static func launch(label: Swift.String? = .none, viewController: UIKit.UIViewController? = .none, context: NamiApple.PaywallLaunchContext? = .none, launchHandler: NamiApple.CampaignLaunchHandler? = .none, paywallActionHandler: NamiApple.NamiPaywallActionHandler? = .none)
@objc public static func launch(url: Foundation.URL, viewController: UIKit.UIViewController? = .none, context: NamiApple.PaywallLaunchContext? = .none, launchHandler: NamiApple.CampaignLaunchHandler? = .none, paywallActionHandler: NamiApple.NamiPaywallActionHandler? = .none)
@objc public static func productGroups(label: Swift.String? = .none, url: Foundation.URL?) -> [Swift.String]
}
@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class NamiCampaignManager : ObjectiveC.NSObject {
@objc public func register(availableCampaignsHandler: NamiApple.NamiAvailableCampaignsResponseHandler?)
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -636,6 +636,7 @@ public typealias NamiAvailableCampaignsResponseHandler = (_ availableCampaigns:
@objc public static func launch(label: Swift.String? = .none, context: NamiApple.PaywallLaunchContext? = .none, launchHandler: NamiApple.CampaignLaunchHandler? = .none, paywallActionHandler: NamiApple.NamiPaywallActionHandler? = .none)
@objc public static func launch(label: Swift.String? = .none, viewController: UIKit.UIViewController? = .none, context: NamiApple.PaywallLaunchContext? = .none, launchHandler: NamiApple.CampaignLaunchHandler? = .none, paywallActionHandler: NamiApple.NamiPaywallActionHandler? = .none)
@objc public static func launch(url: Foundation.URL, viewController: UIKit.UIViewController? = .none, context: NamiApple.PaywallLaunchContext? = .none, launchHandler: NamiApple.CampaignLaunchHandler? = .none, paywallActionHandler: NamiApple.NamiPaywallActionHandler? = .none)
@objc public static func productGroups(label: Swift.String? = .none, url: Foundation.URL?) -> [Swift.String]
}
@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class NamiCampaignManager : ObjectiveC.NSObject {
@objc public func register(availableCampaignsHandler: NamiApple.NamiAvailableCampaignsResponseHandler?)
Expand Down
Binary file modified NamiApple.xcframework/ios-arm64/NamiApple.framework/NamiApple
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,12 @@ SWIFT_CLASS("_TtC9NamiApple19NamiCampaignManager")
/// \param paywallActionHandler Handler to be invoked when a paywall action occurs during this launch.
///
+ (void)launchWithUrl:(NSURL * _Nonnull)url viewController:(UIViewController * _Nullable)viewController context:(PaywallLaunchContext * _Nullable)context launchHandler:(void (^ _Nullable)(BOOL, NSError * _Nullable))launchHandler paywallActionHandler:(void (^ _Nullable)(NamiPaywallEvent * _Nonnull))paywallActionHandler;
/// Provide the list of product groups supported by the provided placement label
/// \param label Campaign placement label defined in Nami Control Center for launching a specific campaign.
///
/// \param url Campaign placement URL defined in Nami Control Center for launching a specific campaign.
///
+ (NSArray<NSString *> * _Nonnull)productGroupsWithLabel:(NSString * _Nullable)label url:(NSURL * _Nullable)url SWIFT_WARN_UNUSED_RESULT;
@end


Expand Down Expand Up @@ -1715,6 +1721,12 @@ SWIFT_CLASS("_TtC9NamiApple19NamiCampaignManager")
/// \param paywallActionHandler Handler to be invoked when a paywall action occurs during this launch.
///
+ (void)launchWithUrl:(NSURL * _Nonnull)url viewController:(UIViewController * _Nullable)viewController context:(PaywallLaunchContext * _Nullable)context launchHandler:(void (^ _Nullable)(BOOL, NSError * _Nullable))launchHandler paywallActionHandler:(void (^ _Nullable)(NamiPaywallEvent * _Nonnull))paywallActionHandler;
/// Provide the list of product groups supported by the provided placement label
/// \param label Campaign placement label defined in Nami Control Center for launching a specific campaign.
///
/// \param url Campaign placement URL defined in Nami Control Center for launching a specific campaign.
///
+ (NSArray<NSString *> * _Nonnull)productGroupsWithLabel:(NSString * _Nullable)label url:(NSURL * _Nullable)url SWIFT_WARN_UNUSED_RESULT;
@end


Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -636,6 +636,7 @@ public typealias NamiAvailableCampaignsResponseHandler = (_ availableCampaigns:
@objc public static func launch(label: Swift.String? = .none, context: NamiApple.PaywallLaunchContext? = .none, launchHandler: NamiApple.CampaignLaunchHandler? = .none, paywallActionHandler: NamiApple.NamiPaywallActionHandler? = .none)
@objc public static func launch(label: Swift.String? = .none, viewController: UIKit.UIViewController? = .none, context: NamiApple.PaywallLaunchContext? = .none, launchHandler: NamiApple.CampaignLaunchHandler? = .none, paywallActionHandler: NamiApple.NamiPaywallActionHandler? = .none)
@objc public static func launch(url: Foundation.URL, viewController: UIKit.UIViewController? = .none, context: NamiApple.PaywallLaunchContext? = .none, launchHandler: NamiApple.CampaignLaunchHandler? = .none, paywallActionHandler: NamiApple.NamiPaywallActionHandler? = .none)
@objc public static func productGroups(label: Swift.String? = .none, url: Foundation.URL?) -> [Swift.String]
}
@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class NamiCampaignManager : ObjectiveC.NSObject {
@objc public func register(availableCampaignsHandler: NamiApple.NamiAvailableCampaignsResponseHandler?)
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -636,6 +636,7 @@ public typealias NamiAvailableCampaignsResponseHandler = (_ availableCampaigns:
@objc public static func launch(label: Swift.String? = .none, context: NamiApple.PaywallLaunchContext? = .none, launchHandler: NamiApple.CampaignLaunchHandler? = .none, paywallActionHandler: NamiApple.NamiPaywallActionHandler? = .none)
@objc public static func launch(label: Swift.String? = .none, viewController: UIKit.UIViewController? = .none, context: NamiApple.PaywallLaunchContext? = .none, launchHandler: NamiApple.CampaignLaunchHandler? = .none, paywallActionHandler: NamiApple.NamiPaywallActionHandler? = .none)
@objc public static func launch(url: Foundation.URL, viewController: UIKit.UIViewController? = .none, context: NamiApple.PaywallLaunchContext? = .none, launchHandler: NamiApple.CampaignLaunchHandler? = .none, paywallActionHandler: NamiApple.NamiPaywallActionHandler? = .none)
@objc public static func productGroups(label: Swift.String? = .none, url: Foundation.URL?) -> [Swift.String]
}
@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class NamiCampaignManager : ObjectiveC.NSObject {
@objc public func register(availableCampaignsHandler: NamiApple.NamiAvailableCampaignsResponseHandler?)
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -636,6 +636,7 @@ public typealias NamiAvailableCampaignsResponseHandler = (_ availableCampaigns:
@objc public static func launch(label: Swift.String? = .none, context: NamiApple.PaywallLaunchContext? = .none, launchHandler: NamiApple.CampaignLaunchHandler? = .none, paywallActionHandler: NamiApple.NamiPaywallActionHandler? = .none)
@objc public static func launch(label: Swift.String? = .none, viewController: UIKit.UIViewController? = .none, context: NamiApple.PaywallLaunchContext? = .none, launchHandler: NamiApple.CampaignLaunchHandler? = .none, paywallActionHandler: NamiApple.NamiPaywallActionHandler? = .none)
@objc public static func launch(url: Foundation.URL, viewController: UIKit.UIViewController? = .none, context: NamiApple.PaywallLaunchContext? = .none, launchHandler: NamiApple.CampaignLaunchHandler? = .none, paywallActionHandler: NamiApple.NamiPaywallActionHandler? = .none)
@objc public static func productGroups(label: Swift.String? = .none, url: Foundation.URL?) -> [Swift.String]
}
@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class NamiCampaignManager : ObjectiveC.NSObject {
@objc public func register(availableCampaignsHandler: NamiApple.NamiAvailableCampaignsResponseHandler?)
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -636,6 +636,7 @@ public typealias NamiAvailableCampaignsResponseHandler = (_ availableCampaigns:
@objc public static func launch(label: Swift.String? = .none, context: NamiApple.PaywallLaunchContext? = .none, launchHandler: NamiApple.CampaignLaunchHandler? = .none, paywallActionHandler: NamiApple.NamiPaywallActionHandler? = .none)
@objc public static func launch(label: Swift.String? = .none, viewController: UIKit.UIViewController? = .none, context: NamiApple.PaywallLaunchContext? = .none, launchHandler: NamiApple.CampaignLaunchHandler? = .none, paywallActionHandler: NamiApple.NamiPaywallActionHandler? = .none)
@objc public static func launch(url: Foundation.URL, viewController: UIKit.UIViewController? = .none, context: NamiApple.PaywallLaunchContext? = .none, launchHandler: NamiApple.CampaignLaunchHandler? = .none, paywallActionHandler: NamiApple.NamiPaywallActionHandler? = .none)
@objc public static func productGroups(label: Swift.String? = .none, url: Foundation.URL?) -> [Swift.String]
}
@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class NamiCampaignManager : ObjectiveC.NSObject {
@objc public func register(availableCampaignsHandler: NamiApple.NamiAvailableCampaignsResponseHandler?)
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -6,63 +6,63 @@
<dict>
<key>Headers/NamiApple-Swift.h</key>
<data>
2I361wiv/Nr5E5RGmiF6rq0LvOY=
Rz01TKIltK22aqzMxZnl9ZgznxU=
</data>
<key>Headers/NamiApple.h</key>
<data>
AWEsbOK8bqMCNEdT26ZDrIOx2b4=
</data>
<key>Info.plist</key>
<data>
shWnxpCpuaXH/Ujz4G/X5J/t24c=
JcJ7wT6M70G28x9MUaSV3rAM3Zw=
</data>
<key>Modules/NamiApple.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
<data>
RC/SB4eSwVcHxLdFaFzQLWCECmM=
uEmfdcZJ7Rniqx9CDWO781X41uk=
</data>
<key>Modules/NamiApple.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
<data>
99AoAejDVf0IYyFWQrpqwSDras4=
FhUeQGe9EwfOsvkcssUtnopJhwY=
</data>
<key>Modules/NamiApple.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
<data>
hL7FXPQSlGnr8wIahF4Rblt0moQ=
pvcRLAmC667QWapeR14n03xtcoM=
</data>
<key>Modules/NamiApple.swiftmodule/arm64.swiftdoc</key>
<data>
RC/SB4eSwVcHxLdFaFzQLWCECmM=
uEmfdcZJ7Rniqx9CDWO781X41uk=
</data>
<key>Modules/NamiApple.swiftmodule/arm64.swiftinterface</key>
<data>
99AoAejDVf0IYyFWQrpqwSDras4=
FhUeQGe9EwfOsvkcssUtnopJhwY=
</data>
<key>Modules/NamiApple.swiftmodule/arm64.swiftmodule</key>
<data>
hL7FXPQSlGnr8wIahF4Rblt0moQ=
pvcRLAmC667QWapeR14n03xtcoM=
</data>
<key>Modules/NamiApple.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
<data>
e3jCGVZVCyMr4pX2govc+uXZfeU=
I5eczyuClJ8uwk0XEVZABTuca5M=
</data>
<key>Modules/NamiApple.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
<data>
uB5dC3KEMVDUbs2VjtCKvsS2WPs=
kaFRX6xjTWP5l5SFjk/CBnGTnHg=
</data>
<key>Modules/NamiApple.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<data>
UQwOX+GVbjjQQC3+XROau1/qr2k=
BtjoVwI7gKN0SCufSOzA8IlphM0=
</data>
<key>Modules/NamiApple.swiftmodule/x86_64.swiftdoc</key>
<data>
e3jCGVZVCyMr4pX2govc+uXZfeU=
I5eczyuClJ8uwk0XEVZABTuca5M=
</data>
<key>Modules/NamiApple.swiftmodule/x86_64.swiftinterface</key>
<data>
uB5dC3KEMVDUbs2VjtCKvsS2WPs=
kaFRX6xjTWP5l5SFjk/CBnGTnHg=
</data>
<key>Modules/NamiApple.swiftmodule/x86_64.swiftmodule</key>
<data>
UQwOX+GVbjjQQC3+XROau1/qr2k=
BtjoVwI7gKN0SCufSOzA8IlphM0=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand All @@ -75,7 +75,7 @@
<dict>
<key>hash2</key>
<data>
1CFu9FhLvge/udVJ5M3cgcA5h0Lf+Am8NTlnxpx+QRc=
/hH51d6oCC/3mraUKWlVXUmY1Z8eeDm9dOo3xE9d2Ks=
</data>
</dict>
<key>Headers/NamiApple.h</key>
Expand All @@ -89,84 +89,84 @@
<dict>
<key>hash2</key>
<data>
AP1tOoR500LqiFFLUm8brm7HznjxpjFnm950kML305w=
S3tZhwHpW0Qo0jOwGNfSXe9ZqfSBD5a+RaadrxdbNFo=
</data>
</dict>
<key>Modules/NamiApple.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
q18/0w4NO8OgSxhGHoMVDsh5N6vh/Te302MxKOCv6kY=
PbfapWRjSsWJXPg6BER/oF2whnbXeqE+TzZdS+0X+NA=
</data>
</dict>
<key>Modules/NamiApple.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
kUmuuySWBImrx1qSQt0GHwFfE5p3lRgztsp7mizvHE8=
C1kLvcRNujNIwCuYLOQv0kfqLWB4TLVbCCWB183Q66U=
</data>
</dict>
<key>Modules/NamiApple.swiftmodule/arm64.swiftdoc</key>
<dict>
<key>hash2</key>
<data>
AP1tOoR500LqiFFLUm8brm7HznjxpjFnm950kML305w=
S3tZhwHpW0Qo0jOwGNfSXe9ZqfSBD5a+RaadrxdbNFo=
</data>
</dict>
<key>Modules/NamiApple.swiftmodule/arm64.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
q18/0w4NO8OgSxhGHoMVDsh5N6vh/Te302MxKOCv6kY=
PbfapWRjSsWJXPg6BER/oF2whnbXeqE+TzZdS+0X+NA=
</data>
</dict>
<key>Modules/NamiApple.swiftmodule/arm64.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
kUmuuySWBImrx1qSQt0GHwFfE5p3lRgztsp7mizvHE8=
C1kLvcRNujNIwCuYLOQv0kfqLWB4TLVbCCWB183Q66U=
</data>
</dict>
<key>Modules/NamiApple.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
<dict>
<key>hash2</key>
<data>
sfLuoiyXV+64l2NOR04aawvSUfthuZ3Hpor9jF68EpI=
QAKwILRU6LlCQeLouT5bghgmk3r1ouJ9oZKCFbEzigU=
</data>
</dict>
<key>Modules/NamiApple.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
Rj3F2fFetvN3pNvFfJwCn14kEegALCKcKmy97jQON4U=
is5EH9slgqT1qHYVvQZSoX1KUkc8gvm4W96gi/KZfls=
</data>
</dict>
<key>Modules/NamiApple.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
W2/nG3pk8Usyq2JP7TgqtStGRJXqODNbspPQUPQ3LJs=
A6WTYNx7haWEdUdHH0BgzLukfVPHGJVQ2blgL5Zqekc=
</data>
</dict>
<key>Modules/NamiApple.swiftmodule/x86_64.swiftdoc</key>
<dict>
<key>hash2</key>
<data>
sfLuoiyXV+64l2NOR04aawvSUfthuZ3Hpor9jF68EpI=
QAKwILRU6LlCQeLouT5bghgmk3r1ouJ9oZKCFbEzigU=
</data>
</dict>
<key>Modules/NamiApple.swiftmodule/x86_64.swiftinterface</key>
<dict>
<key>hash2</key>
<data>
Rj3F2fFetvN3pNvFfJwCn14kEegALCKcKmy97jQON4U=
is5EH9slgqT1qHYVvQZSoX1KUkc8gvm4W96gi/KZfls=
</data>
</dict>
<key>Modules/NamiApple.swiftmodule/x86_64.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
W2/nG3pk8Usyq2JP7TgqtStGRJXqODNbspPQUPQ3LJs=
A6WTYNx7haWEdUdHH0BgzLukfVPHGJVQ2blgL5Zqekc=
</data>
</dict>
<key>Modules/module.modulemap</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,12 @@ SWIFT_CLASS("_TtC9NamiApple19NamiCampaignManager")
/// \param paywallActionHandler Handler to be invoked when a paywall action occurs during this launch.
///
+ (void)launchWithUrl:(NSURL * _Nonnull)url viewController:(UIViewController * _Nullable)viewController context:(PaywallLaunchContext * _Nullable)context launchHandler:(void (^ _Nullable)(BOOL, NSError * _Nullable))launchHandler paywallActionHandler:(void (^ _Nullable)(NamiPaywallEvent * _Nonnull))paywallActionHandler;
/// Provide the list of product groups supported by the provided placement label
/// \param label Campaign placement label defined in Nami Control Center for launching a specific campaign.
///
/// \param url Campaign placement URL defined in Nami Control Center for launching a specific campaign.
///
+ (NSArray<NSString *> * _Nonnull)productGroupsWithLabel:(NSString * _Nullable)label url:(NSURL * _Nullable)url SWIFT_WARN_UNUSED_RESULT;
@end


Expand Down
Binary file modified NamiApple.xcframework/tvos-arm64/NamiApple.framework/Info.plist
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -623,6 +623,7 @@ public typealias NamiAvailableCampaignsResponseHandler = (_ availableCampaigns:
@objc public static func launch(label: Swift.String? = .none, context: NamiApple.PaywallLaunchContext? = .none, launchHandler: NamiApple.CampaignLaunchHandler? = .none, paywallActionHandler: NamiApple.NamiPaywallActionHandler? = .none)
@objc public static func launch(label: Swift.String? = .none, viewController: UIKit.UIViewController? = .none, context: NamiApple.PaywallLaunchContext? = .none, launchHandler: NamiApple.CampaignLaunchHandler? = .none, paywallActionHandler: NamiApple.NamiPaywallActionHandler? = .none)
@objc public static func launch(url: Foundation.URL, viewController: UIKit.UIViewController? = .none, context: NamiApple.PaywallLaunchContext? = .none, launchHandler: NamiApple.CampaignLaunchHandler? = .none, paywallActionHandler: NamiApple.NamiPaywallActionHandler? = .none)
@objc public static func productGroups(label: Swift.String? = .none, url: Foundation.URL?) -> [Swift.String]
}
@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc public class NamiCampaignManager : ObjectiveC.NSObject {
@objc public func register(availableCampaignsHandler: NamiApple.NamiAvailableCampaignsResponseHandler?)
Expand Down
Binary file not shown.
Loading

0 comments on commit 49f1886

Please sign in to comment.