We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to add a *.podspec file RN0.60 support?
*.podspec
The react-native-webview podspec is a good example of a package.json driven podspec. See https://github.com/react-native-community/react-native-webview/blob/master/react-native-webview.podspec
Thanks for your package! It is awesome!
The text was updated successfully, but these errors were encountered:
require 'json'
package = JSON.parse(File.read(File.join(dir, 'package.json')))
Pod::Spec.new do |s| s.name = package['name'] s.version = package['version'] s.summary = package['description'] s.license = package['license']
s.authors = package['author'] s.homepage = package['homepage'] s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/droibit/react-native-custom-tabs.git", :tag => "v#{s.version}" } s.source_files = "ios/**/*.{h,m}"
s.dependency 'React' end
Sorry, something went wrong.
require 'json' package = JSON.parse(File.read(File.join(dir, 'package.json'))) Pod::Spec.new do |s| s.name = package['name'] s.version = package['version'] s.summary = package['description'] s.license = package['license'] s.authors = package['author'] s.homepage = package['homepage'] s.platform = :ios, "9.0" s.source = { :git => "https://github.com/droibit/react-native-custom-tabs.git", :tag => "v#{s.version}" } s.source_files = "ios/**/*.{h,m}" s.dependency 'React' end
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
No branches or pull requests
Is it possible to add a
*.podspec
file RN0.60 support?The react-native-webview podspec is a good example of a package.json driven podspec. See https://github.com/react-native-community/react-native-webview/blob/master/react-native-webview.podspec
Thanks for your package! It is awesome!
The text was updated successfully, but these errors were encountered: