mirror of
https://github.com/zhigang1992/AppAnalytics-iOS-Framework.git
synced 2026-01-12 22:45:55 +08:00
19 lines
796 B
Ruby
19 lines
796 B
Ruby
Pod::Spec.new do |spec|
|
|
|
|
spec.name = "AppAnalytics"
|
|
spec.version = "1.2.1"
|
|
spec.summary = "AppAnalytics framework for iOS"
|
|
spec.homepage = "https://appanalytics.io"
|
|
spec.author = { "Cem Sancak" => "cem@appanalytics.io" }
|
|
spec.license = { :type => "MIT", :file => "LICENSE" }
|
|
spec.platform = :ios, "7.0"
|
|
spec.source = { :git => "https://github.com/AppAnalytics-io/AppAnalytics-iOS-Framework.git", :tag => "1.2.1" }
|
|
spec.requires_arc = true
|
|
spec.frameworks = "MobileCoreServices", "SystemConfiguration", "CoreLocation", "StoreKit", "Foundation"
|
|
spec.vendored_libraries = "AppAnalytics.a"
|
|
spec.source_files = "AppAnalytics.h"
|
|
spec.public_header_files = "AppAnalytics.h"
|
|
# spec.xcconfig = { "OTHER_LDFLAGS" => "-all_load" }
|
|
|
|
end
|