Skip to content

Instantly share code, notes, and snippets.

@cicloid
Forked from zwaldowski/TestFlight.podspec
Created August 23, 2012 16:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cicloid/3438131 to your computer and use it in GitHub Desktop.
Save cicloid/3438131 to your computer and use it in GitHub Desktop.
TestFlight CocoaPod
Pod::Spec.new do |s|
s.name = 'TestFlightSDK'
s.version = '1.1b1'
s.license = 'Commercial'
s.summary = 'TestFlightSDK for over-the-air beta testing and crash reporting.'
s.homepage = 'http://www.testflightapp.com'
s.author = { 'TestFlight' => 'support@testflightapp.com' }
s.source = { :http => 'https://d3fqheiq7nlyrx.cloudfront.net/sdk-downloads/TestFlightSDK1.1beta1.zip' }
s.description = 'TestFlightSDK for over-the-air beta testing and crash reporting.'
s.platform = :ios
s.source_files = 'TestFlight.h'
s.preserve_paths = 'libTestFlight.a'
s.library = 'TestFlight', 'z'
s.framework = 'UIKit'
s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '"$(PODS_ROOT)/TestFlightSDK"' }
end
@defvol
Copy link

defvol commented Aug 23, 2012

HackBook:CitiVox Rod$ pod install
Updating spec repo `master'

Cocoapods 0.13.0 is available.

  * Pre-downloading: 'TestFlightSDK'

El output parece bueno, sin embargo hay dos problemas

  • No encuentra el header file TestFlight.h
  • No liga la librería estática al proyecto

Voy a abrir un repo en github para que de ahí tome todo

@defvol
Copy link

defvol commented Aug 23, 2012

Ya se resolvió el problema:

HackBook:Desktop Rod$ pod search Testflight

--> TestFlightSDK (1.0)
    TestFlightSDK for over-the-air beta testing and crash reporting.
    - Homepage: http://www.testflightapp.com
    - Source:   https://d3fqheiq7nlyrx.cloudfront.net/sdk-downloads/TestFlightSDK1.0.zip

CocoaPods/Specs#277

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment