Skip to content

Commit

Permalink
3.2.4-beta.01
Browse files Browse the repository at this point in the history
  • Loading branch information
runner authored and runner committed Sep 18, 2024
1 parent 4e65db2 commit a24c795
Show file tree
Hide file tree
Showing 52 changed files with 531,525 additions and 89 deletions.
27 changes: 18 additions & 9 deletions Nami.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,36 @@

Pod::Spec.new do |s|
s.name = 'Nami'
s.version = '2.9.4'
s.summary = 'Simplify StoreKit integration and testing. Add cloud based dynamic paywalls to your app.'
s.version = '3.2.4-beta.01'
s.summary = 'Easy Apple StoreKit subscriptions & in-app purchases, with powerful built-in paywalls and A/B testing.'

s.description = <<-DESC
This library helps manage StoreKit operations, allow cloud based controls of your paywall to change images, text, and products. Adds cloud based control of rules for how your users see your paywall.
This library helps you easily offer in-app purchases and subscriptions using Apple App Store billing and StoreKit APIs.
Requires an account with Nami ML. Platform includes a free tier to get you up and running with subscriptions and paywalls in your app.
- No IAP code to write.
- Focus on your app experience.
- All edge cases are handled and no server is required.
- Includes is powerful built-in paywalls templates, built with SwiftUI and UIKit
- Update paywalls easily using a browser-based paywall CMS.
- Conduct paywall A/B tests, to improve your conversion rate.
- Robust subscription analytics, webhooks, and much more.
See https://nami.ml for more details and to request an account.
Requires an account with Nami. The free tier is generous and includes everything you need to get up and running.
See https://www.namiml.com for more details and to create a free account.
DESC

s.homepage = 'https://github.com/namiml/nami-apple'
s.license = { :type => 'CUSTOM', :file => 'LICENSE' }
s.author = { 'nami' => 'Kendall.Gelner@namiml.com' }
s.author = { 'Team Nami' => 'hello@namiml.com' }
s.source = { :git => "https://github.com/namiml/nami-apple.git", :tag => "#{s.version}" }

s.social_media_url = 'https://twitter.com/HelloNamiML'

s.platform = :ios, "11.2"
s.ios.deployment_target = '11.2'
s.ios.deployment_target = '14.0'
s.tvos.deployment_target = '15.0'

s.ios.vendored_frameworks = 'Nami.xcframework'
s.ios.vendored_frameworks = 'NamiApple.xcframework'
s.tvos.vendored_frameworks = 'NamiApple.xcframework'
s.frameworks = 'UIKit', 'StoreKit'
end
Binary file added NamiApple.xcframework.zip
Binary file not shown.
75 changes: 75 additions & 0 deletions NamiApple.xcframework/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>AvailableLibraries</key>
<array>
<dict>
<key>BinaryPath</key>
<string>NamiApple.framework/NamiApple</string>
<key>LibraryIdentifier</key>
<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>tvos</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>NamiApple.framework/NamiApple</string>
<key>LibraryIdentifier</key>
<string>tvos-arm64</string>
<key>LibraryPath</key>
<string>NamiApple.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
</array>
<key>SupportedPlatform</key>
<string>tvos</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>NamiApple.framework/NamiApple</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>NamiApple.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>NamiApple.framework/NamiApple</string>
<key>LibraryIdentifier</key>
<string>ios-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>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
<string>XFWK</string>
<key>XCFrameworkFormatVersion</key>
<string>1.0</string>
</dict>
</plist>
Loading

0 comments on commit a24c795

Please sign in to comment.