From f9a93787565e663dde148db3d941cd2b9b53e69b Mon Sep 17 00:00:00 2001 From: arfa123 Date: Sun, 19 Jul 2020 14:36:53 +0500 Subject: [PATCH] podspec file added to support autolinking in ios --- react-native-simple-compass.podspec | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 react-native-simple-compass.podspec diff --git a/react-native-simple-compass.podspec b/react-native-simple-compass.podspec new file mode 100644 index 0000000..5baf1e0 --- /dev/null +++ b/react-native-simple-compass.podspec @@ -0,0 +1,16 @@ +Pod::Spec.new do |s| + s.name = "react-native-simple-compass" + s.version = "1.0.0" + s.summary = "Simple module exposing the compass on iOS and Android" + s.description = <<-DESC + A ReactNative simple module exposing the compass on iOS and Android + DESC + s.homepage = "https://github.com/vnil/react-native-simple-compass" + s.license = { :type => "MIT", :file => "LICENSE.md" } + s.author = { "Viktor Nilsson" => "some.guy@internett.com" } + s.platform = :ios, "9.0" + s.source = { :git => "https://github.com/vnil/react-native-simple-compass", :tag => "master" } + s.source_files = "ios/**/*.{h,m}" + + s.dependency "React" +end \ No newline at end of file