dev
podspec 22 lines 986 Bytes
Raw
1 #
2 # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
3 # Run `pod lib lint cw_decred.podspec` to validate before publishing.
4 #
5 Pod::Spec.new do |s|
6 s.name = 'cw_decred'
7 s.version = '0.0.1'
8 s.summary = 'Cake Wallet Decred'
9 s.description = 'Cake Wallet wrapper over Decred project'
10 s.homepage = 'http://cakewallet.com'
11 s.license = { :file => '../LICENSE' }
12 s.author = { 'Cake Wallet' => 'support@cakewallet.com' }
13 s.source = { :path => '.' }
14 s.source_files = 'Classes/**/*'
15 s.dependency 'Flutter'
16 s.platform = :ios, '11.0'
17
18 s.vendored_libraries = 'External/lib/libdcrwallet.a'
19 # Flutter.framework does not contain a i386 slice.
20 s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386', "OTHER_LDFLAGS" => "-force_load $(PODS_TARGET_SRCROOT)/External/lib/libdcrwallet.a -lstdc++" }
21 s.swift_version = '5.0'
22 end