30 lines
685 B
Ruby
30 lines
685 B
Ruby
source 'https://cdn.cocoapods.org/'
|
|
source 'git@github.com:castbox/GuruSpecs.git'
|
|
|
|
use_frameworks!
|
|
|
|
platform :ios, '11.0'
|
|
|
|
target 'GuruAnalytics_Example' do
|
|
pod 'GuruAnalyticsLib', :path => '../'
|
|
# pod 'GuruAnalyticsLib', '0.4.2'
|
|
end
|
|
|
|
post_install do |installer|
|
|
|
|
installer.pods_project.targets.each do |target|
|
|
target.build_configurations.each do |config|
|
|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
|
|
end
|
|
end
|
|
|
|
installer.generated_projects.each do |project|
|
|
project.targets.each do |target|
|
|
target.build_configurations.each do |config|
|
|
config.build_settings["DEVELOPMENT_TEAM"] = "FRX48476C2"
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|