fixed the source_files path in podspec

This commit is contained in:
Viren Rajput
2018-02-16 18:43:43 +00:00
committed by GitHub
parent eb5b4ebaea
commit 8989aa2354
+2 -2
View File
@@ -10,13 +10,13 @@ Pod::Spec.new do |s|
s.license = package['license']
s.author = package['author']
s.homepage = package['homepage']
s.source = { :git => 'https://github.com/lwansbrough/react-native-camera', :tag => s.version }
s.source = { :git => 'https://github.com/react-native-community/react-native-camera', :tag => s.version }
s.requires_arc = true
s.platform = :ios, '8.0'
s.preserve_paths = 'LICENSE', 'README.md', 'package.json', 'index.js'
s.source_files = 'ios/*.{h,m}'
s.source_files = 'ios/**/*.{h,m}'
s.dependency 'React'
end