Skip to content

Commit 276b7e3

Browse files
authored
Merge pull request #23 from rops/master
Adding Cocoapods support
2 parents 2cfa070 + 9bcb701 commit 276b7e3

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

react-native-splash-screen.podspec

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
require "json"
2+
3+
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
4+
5+
Pod::Spec.new do |s|
6+
s.name = "react-native-splash-screen"
7+
s.version = package["version"]
8+
s.summary = package["description"]
9+
s.author = 'crazycodeboy'
10+
s.homepage = package["homepage"]
11+
s.license = package["license"]
12+
s.platform = :ios, "7.0"
13+
s.source = { :git => "https://github.com/crazycodeboy/react-native-splash-screen", :tag => "#{s.version}" }
14+
s.source_files = "ios/*.{h,m}"
15+
s.dependency "React"
16+
end

0 commit comments

Comments
 (0)