Skip to content

Commit

Permalink
fix podfile dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
u10int committed Jun 27, 2018
1 parent be96432 commit 4938d20
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions Demo/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ use_frameworks!
workspace 'AerisDemo.xcworkspace'

def common_pods
pod 'AerisWeather', :podspec => '../AerisWeather.podspec'
pod 'AerisWeather/Maps', :podspec => '../AerisWeather.podspec'
pod 'AerisWeather/Mapbox', :podspec => '../AerisWeather.podspec'
pod 'AerisWeather/Google', :podspec => '../AerisWeather.podspec'
pod 'AerisWeather'
pod 'AerisWeather/Maps'
pod 'AerisWeather/Mapbox'
pod 'AerisWeather/Google'
end

target :AerisObjCDemo do
Expand All @@ -24,6 +24,11 @@ target :AerisSwiftDemo do
common_pods
end

target :AerisDemoSupport do
project 'AerisDemoSupport/AerisDemoSupport.xcodeproj'
common_pods
end

pre_install do |installer|
def installer.verify_no_static_framework_transitive_dependencies; end
end

0 comments on commit 4938d20

Please sign in to comment.