-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
8 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'Taplytics' | ||
s.version = '1.1.4' | ||
s.license = { :type => 'Commercial', :text => 'See http://taplytics.com/terms' } | ||
s.platform = :ios | ||
s.author = { 'Taplytics' => '[email protected]' } | ||
s.license = { :type => 'Commercial', :text => 'See http://taplytics.com/terms' } | ||
s.homepage = 'http://taplytics.com' | ||
s.summary = 'iOS framework for using the Taplytics native mobile A/B testing service.' | ||
s.description = 'For installation instructions, please visit: https://github.com/taplytics/taplytics-ios-sdk' | ||
s.homepage = 'http://taplytics.com' | ||
s.author = { 'Taplytics' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/taplytics/taplytics-ios-sdk.git', :tag => "#{s.version}" } | ||
s.platform = :ios, '6.0' | ||
s.frameworks = 'CFNetwork', 'Security', 'CoreTelephony', 'AdSupport', 'SystemConfiguration' | ||
s.requires_arc = true | ||
s.frameworks = 'CFNetwork', 'Security', 'CoreTelephony', 'AdSupport', 'SystemConfiguration' | ||
s.library = 'icucore' | ||
s.vendored_frameworks = 'Taplytics.framework' | ||
s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC', 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/Taplytics"' } | ||
s.preserve_paths = 'Taplytics.framework' | ||
s.public_header_files = "Taplytics.framework/**/*.h" | ||
s.vendored_frameworks = "Taplytics.framework" | ||
end |