1# Copyright (c) Meta Platforms, Inc. and affiliates. 2# 3# This source code is licensed under the MIT license found in the 4# LICENSE file in the root directory of this source tree. 5 6require "json" 7 8package = JSON.parse(File.read(File.join(__dir__, "..", "..", "package.json"))) 9version = package['version'] 10 11 12 13Pod::Spec.new do |s| 14 s.name = "ABI47_0_0RCTRequired" 15 s.version = version 16 s.summary = "-" # TODO 17 s.homepage = "https://reactnative.dev/" 18 s.license = package["license"] 19 s.author = "Facebook, Inc. and its affiliates" 20 s.platforms = { :ios => "12.4" } 21 s.source = { :path => "." } 22 s.source_files = "**/*.{c,h,m,mm,cpp}" 23 s.header_dir = "ABI47_0_0RCTRequired" 24end 25