From 5050136dc3845041306ebc328b26c653b485e7a2 Mon Sep 17 00:00:00 2001 From: Ahsan Sohail Date: Fri, 30 Aug 2019 16:39:14 +0500 Subject: [PATCH] add podspec file for RN 0.6x+ --- react-native-smart-splash-screen.podspec | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 react-native-smart-splash-screen.podspec 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