Skip to content

Commit

Permalink
Fix issue with podspec file which I think is causing the reported iss…
Browse files Browse the repository at this point in the history
…ue with the cocoapod for public use. Version was mismatched and the public_header_files wasn't matching because of the leading ./ in the file path. (#73)
  • Loading branch information
stephen-deg authored Jul 26, 2018
1 parent 17a7e34 commit 6cee705
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ios/AMPKit.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'AMPKit'
s.version = '0.1.0'
s.version = '0.1.1'
s.authors = "The AMP HTML authors."
s.summary = 'A library for displaying AMP results in a native viewer'

Expand All @@ -35,9 +35,9 @@ An AMP viewer for iOS that supports prefetching articles and loading multiple AM
'AMPKit' => ['AMPKit/Icons.xcassets', 'AMPKit/AMPKHeaderView.xib', 'AMPKit/Resources/amp_integration.js', 'AMPKit/vendor/ampkit-url-creator.js']
}

s.public_header_files = './AMPKit/**/*.h'
s.frameworks = 'UIKit', 'SafariServices', 'WebKit'
s.dependency 'MaterialComponents/ActivityIndicator', '~> 29.0'
s.dependency 'MaterialComponents/Buttons', '~> 29.0'
s.dependency 'GoogleToolboxForMac/Defines', '~> 2.1'
s.public_header_files = 'AMPKit/**/*.h'
s.frameworks = 'UIKit', 'SafariServices', 'WebKit'
s.dependency 'MaterialComponents/ActivityIndicator', '~> 29.0'
s.dependency 'MaterialComponents/Buttons', '~> 29.0'
s.dependency 'GoogleToolboxForMac/Defines', '~> 2.1'
end

0 comments on commit 6cee705

Please sign in to comment.