2021-12-30 15:08:43 -08:00
|
|
|
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
2021-08-31 16:18:41 -07:00
|
|
|
#
|
|
|
|
|
# This source code is licensed under the MIT license found in the
|
|
|
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
|
|
|
|
|
|
require "json"
|
|
|
|
|
|
|
|
|
|
package = JSON.parse(File.read(File.join(__dir__, "../package.json")))
|
|
|
|
|
|
|
|
|
|
Pod::Spec.new do |s|
|
|
|
|
|
s.name = "ScreenshotManager"
|
|
|
|
|
s.version = package["version"]
|
|
|
|
|
s.summary = package["description"]
|
|
|
|
|
s.description = "ScreenshotManager"
|
|
|
|
|
s.homepage = "https://github.com/facebook/react-native.git"
|
|
|
|
|
s.license = "MIT"
|
2023-09-07 03:16:23 -07:00
|
|
|
s.platforms = min_supported_versions
|
2022-09-09 04:25:56 -07:00
|
|
|
s.compiler_flags = '-Wno-nullability-completeness'
|
2022-11-07 09:52:52 -08:00
|
|
|
s.author = "Meta Platforms, Inc. and its affiliates"
|
2021-08-31 16:18:41 -07:00
|
|
|
s.source = { :git => "https://github.com/facebook/react-native.git", :tag => "#{s.version}" }
|
|
|
|
|
|
|
|
|
|
s.source_files = "**/*.{h,m,mm,swift}"
|
|
|
|
|
s.requires_arc = true
|
2024-06-24 03:14:55 -07:00
|
|
|
s.framework = ["UIKit", "CoreGraphics"]
|
2021-08-31 16:18:41 -07:00
|
|
|
|
2022-09-09 04:25:56 -07:00
|
|
|
install_modules_dependencies(s)
|
2021-08-31 16:18:41 -07:00
|
|
|
end
|