From 8989aa235475e3157ca3b172632fdbd26515f52a Mon Sep 17 00:00:00 2001 From: Viren Rajput Date: Fri, 16 Feb 2018 18:43:43 +0000 Subject: [PATCH] fixed the `source_files` path in podspec --- react-native-camera.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/react-native-camera.podspec b/react-native-camera.podspec index 78c52f5..21d4aff 100644 --- a/react-native-camera.podspec +++ b/react-native-camera.podspec @@ -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