|
| 1 | +# |
| 2 | +# Be sure to run `pod lib lint vcx.podspec' to ensure this is a |
| 3 | +# valid spec before submitting. |
| 4 | +# |
| 5 | +# Any lines starting with a # are optional, but their use is encouraged |
| 6 | +# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html |
| 7 | +# |
| 8 | + |
| 9 | +Pod::Spec.new do |s| |
| 10 | + s.name = 'vcx' |
| 11 | + s.version = '0.0.10' |
| 12 | + s.summary = 'The Objective-C wrapper around the libvcx shared library.' |
| 13 | + |
| 14 | +# This description is used to generate tags and improve search results. |
| 15 | +# * Think: What does it do? Why did you write it? What is the focus? |
| 16 | +# * Try to keep it short, snappy and to the point. |
| 17 | +# * Write the description between the DESC delimiters below. |
| 18 | +# * Finally, don't worry about the indent, CocoaPods strips it! |
| 19 | + |
| 20 | + s.description = <<-DESC |
| 21 | +The ConnectMe mobile app on the iOS platform will call into the libvcx shared library |
| 22 | +from Objective-C. This pod is a very thin Objective-C wrapper that allows react native to call |
| 23 | +through to the libvcx shared library. |
| 24 | + DESC |
| 25 | + |
| 26 | + s.homepage = 'https://www.evernym.com/' |
| 27 | + s.license = { :type => 'MIT', :file => 'LICENSE' } |
| 28 | + s.author = { 'evernym-ios-dev' => '[email protected]' } |
| 29 | + s.source = { :http => 'https://repo.corp.evernym.com/filely/ios/vcx.framework_20180606.1451_universal.zip'} |
| 30 | + |
| 31 | + s.ios.deployment_target = '8.0' |
| 32 | + |
| 33 | + #s.source_files = '**/vcx/Classes/**/*','**/Example/Classes/**/*' |
| 34 | + |
| 35 | + # s.resource_bundles = { |
| 36 | + # 'vcx' => ['**/vcx/Assets/*.png'] |
| 37 | + # } |
| 38 | + s.ios.vendored_frameworks="vcx/vcx.framework" |
| 39 | + s.compiler_flags = '-ObjC' |
| 40 | + s.public_header_files = 'vcx/vcx.framework/include/*.h' |
| 41 | + s.ios.vendored_library = 'vcx/vcx.framework/lib/libvcx.a' |
| 42 | + # s.frameworks = 'UIKit', 'MapKit' |
| 43 | + # s.dependency 'AFNetworking', '~> 2.3' |
| 44 | +end |
0 commit comments