diff --git a/react-native-smart-splash-screen.podspec b/react-native-smart-splash-screen.podspec new file mode 100644 index 0000000..7d741ec --- /dev/null +++ b/react-native-smart-splash-screen.podspec @@ -0,0 +1,19 @@ +require 'json' + +package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) + +Pod::Spec.new do |s| + s.name = "react-native-smart-splash-screen" + s.version = package['version'] + s.summary = "React Native Smart Splash Screen component for Android and iOS" + + s.authors = { "henninghall" => "henning.hall@hotmail.com" } + s.homepage = "https://github.com/sam17896/react-native-smart-splash-screen" + s.license = package['license'] + s.platform = :ios, "8.0" + + s.source = { :git => "https://github.com/sam17896/react-native-smart-splash-screen" } + s.source_files = "ios/RCTSplashScreen/RCTSplashScreen/RCTSplashScreen.{h,m}" + + s.dependency 'React' +end