Skip to content

Commit 3f59a81

Browse files
robinxba7ul
authored andcommitted
Fix issue with CocoaPods (#29)
CocoaPods can not include source files due to using relative path of podspec.
1 parent 737e8be commit 3f59a81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ios/ReactNativeExceptionHandler.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Pod::Spec.new do |s|
1212
s.author = { "Atul R" => "[email protected]" }
1313
s.platform = :ios, "7.0"
1414
s.source = { :git => "https://github.com/author/ReactNativeExceptionHandler.git", :tag => "master" }
15-
s.source_files = "ReactNativeExceptionHandler/**/*.{h,m}"
15+
s.source_files = "*.{h,m}"
1616
s.requires_arc = true
1717

1818
s.dependency "React"

0 commit comments

Comments
 (0)