Skip to content

Commit

Permalink
3.2.9 (#77)
Browse files Browse the repository at this point in the history
Co-authored-by: runner <[email protected]>
  • Loading branch information
namidan and runner authored Jan 14, 2025
1 parent b32ae9d commit a866765
Show file tree
Hide file tree
Showing 43 changed files with 4,222 additions and 2,488 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.2.8'
s.version = '3.2.9'
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.
16 changes: 8 additions & 8 deletions NamiApple.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<key>BinaryPath</key>
<string>NamiApple.framework/NamiApple</string>
<key>LibraryIdentifier</key>
<string>tvos-arm64_x86_64-simulator</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>NamiApple.framework</string>
<key>SupportedArchitectures</key>
Expand All @@ -17,7 +17,7 @@
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>tvos</string>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
Expand All @@ -39,32 +39,32 @@
<key>BinaryPath</key>
<string>NamiApple.framework/NamiApple</string>
<key>LibraryIdentifier</key>
<string>ios-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>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>NamiApple.framework/NamiApple</string>
<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>
</array>
<key>CFBundlePackageType</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,7 @@ 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;
+ (void)launchURLWithUrl:(NSURL * _Nonnull)url paywallContext:(PaywallLaunchContext * _Nonnull)paywallContext campaign:(NamiCampaign * _Nullable)campaign viewController:(UIViewController * _Nullable)viewController 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.
///
Expand Down Expand Up @@ -1019,7 +1020,7 @@ SWIFT_CLASS("_TtC9NamiApple13NamiMLManager")
///
+ (void)enterCoreContentWithLabels:(NSArray<NSString *> * _Nonnull)labels;
/// Labeling method to help train the machine learning. Use to identify important consumption patterns in your app that you believe drive customer loyalty. Must be paired with a matching exitCoreContent call with the same label.
/// \param label Keyword describing the portion of the app entered. Machine learning will work best when using somewhat generic labels like “video” or “sports” rather than being very specific like “video_basketball_michael_jordan_dunk”. Consult https://docs.namiml.com for best practices.
/// \param label Keyword describing the portion of the app entered. Machine learning will work best when using somewhat generic labels like “video” or “sports” rather than being very specific like “video_basketball_michael_jordan_dunk”. Consult https://learn.namiml.com for best practices.
///
+ (void)enterCoreContentWithLabel:(NSString * _Nonnull)label;
/// Labeling method for training machine learning. Called whenver the user exits a key part of your application. Labels passed in should match labels passed into a corresponding enterCoreContentPath(labels:) call.
Expand Down
Binary file modified NamiApple.xcframework/ios-arm64/NamiApple.framework/Info.plist
Binary file not shown.
Loading

0 comments on commit a866765

Please sign in to comment.