forked from RevenueCat/purchases-flutter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpurchases_flutter.podspec
29 lines (27 loc) · 1.12 KB
/
purchases_flutter.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'purchases_flutter'
s.version = '4.0.0-rc.2'
s.summary = 'Cross-platform subscriptions framework for Flutter.'
s.description = <<-DESC
Client for the RevenueCat subscription and purchase tracking system, making implementing in-app subscriptions in Flutter easy - receipt validation and status tracking included!
DESC
s.homepage = 'http://revenuecat.com'
s.license = { :file => '../LICENSE' }
s.author = { 'RevenueCat' => 'support@revenuecat.com' }
s.source = { :path => '.' }
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'Flutter'
s.dependency 'PurchasesHybridCommon', '3.3.0'
s.ios.deployment_target = '11.0'
s.swift_version = '5.0'
# Flutter.framework does not contain a i386 slice.
s.pod_target_xcconfig = {
'DEFINES_MODULE' => 'YES',
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386',
'OTHER_LDFLAGS' => '-framework RevenueCat'
}
end