Skip to content

Commit 0ef55ca

Browse files
authored
Fix xcode build issue
1 parent 9d2d744 commit 0ef55ca

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

react-native-blur.podspec

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ require "json"
33
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
44

55
Pod::Spec.new do |s|
6-
s.name = "react-native-blur"
7-
s.version = package["version"]
8-
s.source_files = "ios/*.{h,m}"
9-
s.ios.deployment_target = '8.0'
10-
s.tvos.deployment_target = '9.0'
11-
s.authors = { "Alexey Kureev" => "[email protected]" }
12-
s.license = "MIT"
13-
s.summary = "Component implementation for UIVisualEffectView's blur and vibrancy effect."
14-
s.homepage = "https://github.com/react-native-community/react-native-blur"
15-
s.source = { :git => "https://github.com/react-native-community/react-native-blur.git" }
6+
s.name = "react-native-blur"
7+
s.version = package["version"]
8+
s.source_files = "ios/*.{h,m}"
9+
s.ios.deployment_target = "11.0"
10+
s.tvos.deployment_target = "11.0"
11+
s.authors = { "Alexey Kureev" => "[email protected]" }
12+
s.license = "MIT"
13+
s.summary = "Component implementation for UIVisualEffectView's blur and vibrancy effect."
14+
s.homepage = "https://github.com/react-native-community/react-native-blur"
15+
s.source = { :git => "https://github.com/react-native-community/react-native-blur.git" }
1616

17-
s.dependency 'React'
17+
s.dependency "React-Core"
1818
end

0 commit comments

Comments
 (0)