From 5a648c7165b4ff2276ca057ac480963bdeae7c1c Mon Sep 17 00:00:00 2001 From: Jonas Date: Thu, 3 Oct 2019 16:13:28 +0300 Subject: [PATCH] Adding podspec file Adding podspec file for easier linking with iOS project --- react-native-apple-ads-attribution.podspec | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 react-native-apple-ads-attribution.podspec diff --git a/react-native-apple-ads-attribution.podspec b/react-native-apple-ads-attribution.podspec new file mode 100644 index 0000000..d4af610 --- /dev/null +++ b/react-native-apple-ads-attribution.podspec @@ -0,0 +1,16 @@ +require "json" + +package = JSON.parse(File.read(File.join(__dir__, "package.json"))) + +Pod::Spec.new do |s| + s.name = "react-native-apple-ads-attribution" + s.version = package["version"] + s.summary = package["description"] + s.author = 'kenmaca' + s.homepage = package["homepage"] + s.license = package["license"] + s.platform = :ios, "7.0" + s.source = { :git => "https://github.com/kenmaca/react-native-apple-ads-attribution", :tag => "v#{s.version}" } + s.source_files = "ios/*.{h,m}" + s.dependency "React" +end