Skip to content

Commit

Permalink
⚙️ Podfile: Set swift version to 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicstop committed Jan 11, 2021
1 parent 48acaba commit 2a5e6ba
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions react-native-ios-context-menu.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,18 @@ require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))

Pod::Spec.new do |s|
s.name = "react-native-ios-context-menu"
s.version = package["version"]
s.summary = package["description"]
s.homepage = package["homepage"]
s.license = package["license"]
s.authors = package["author"]
s.name = "react-native-ios-context-menu"
s.version = package["version"]
s.summary = package["description"]
s.homepage = package["homepage"]
s.license = package["license"]
s.authors = package["author"]

s.platforms = { :ios => "10.0" }
s.source = { :git => "https://github.com/dominicstop/react-native-ios-context-menu.git", :tag => "#{s.version}" }

s.source_files = "ios/**/*.{h,m,mm,swift}"
s.platforms = { :ios => "10.0" }
s.source = { :git => "https://github.com/dominicstop/react-native-ios-context-menu.git", :tag => "#{s.version}" }

s.source_files = "ios/**/*.{h,m,mm,swift}"
s.swift_version = '5.3'

s.dependency 'React-Core'
end

0 comments on commit 2a5e6ba

Please sign in to comment.