|
| 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.8' |
| 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.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' |
| 28 | + s.license = { :type => 'MIT', :file => 'LICENSE' } |
| 29 | + s.author = { 'yaswanthsvist' => '[email protected]' } |
| 30 | + #s.source = { :git => '[email protected]:evernym/sdk.git', :tag => s.version.to_s } |
| 31 | + s.source = { :http => 'https://repo.corp.evernym.com/filely/ios/vcx.framework_20180523.1433_universal.zip' } |
| 32 | + # s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>' |
| 33 | + |
| 34 | + s.ios.deployment_target = '8.0' |
| 35 | + s.ios.vendored_frameworks="vcx/vcx.framework" |
| 36 | + s.compiler_flags = '-ObjC -lvcx' |
| 37 | + |
| 38 | + # s.resource_bundles = { |
| 39 | + # 'vcx' => ['**/vcx/Assets/*.png'] |
| 40 | + # } |
| 41 | + |
| 42 | + s.public_header_files = 'vcx/vcx.framework/include/*.h', 'vcx/vcx.framework/headers/*.h' |
| 43 | + s.ios.vendored_library = 'vcx/vcx.framework/lib/libvcx.a' |
| 44 | + # s.frameworks = 'UIKit', 'MapKit' |
| 45 | + # s.dependency 'AFNetworking', '~> 2.3' |
| 46 | +end |
0 commit comments