mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
42b01a32a1
Summary: Use relative installation root instead of absolute to avoid embedding absolute paths in pods project Also removes a leading space from each path. Before: <img width="799" alt="155846827-94c474b7-8a79-45fc-a900-8860a94fb318" src="https://user-images.githubusercontent.com/996231/155847731-de128759-bff5-4d1f-a59a-377298055d85.png"> After: <img width="745" alt="Screenshot 2022-02-26 at 15 58 32" src="https://user-images.githubusercontent.com/996231/155847739-b783debc-a805-4ce7-a88a-33f764dc5985.png"> ## Changelog <!-- Help reviewers and the release process by writing your own changelog entry. For an example, see: https://github.com/facebook/react-native/wiki/Changelog --> [iOS] [Fixed] - Remove absolute paths from pods project Pull Request resolved: https://github.com/facebook/react-native/pull/33187 Test Plan: Pod install and view in Xcode FBReactNativeSpec -> Build Phases -> [CP-User] Generate Specs Reviewed By: ShikaSD Differential Revision: D34549541 Pulled By: dmitryrykun fbshipit-source-id: 2926b093fb87f50ef9988e23fce593348f00077d
40 lines
1.3 KiB
Ruby
40 lines
1.3 KiB
Ruby
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
#
|
|
# 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")))
|
|
|
|
folly_compiler_flags = '-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32'
|
|
folly_version = '2021.06.28.00-v2'
|
|
|
|
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"
|
|
s.platforms = { :ios => "11.0", :tvos => "11.0" }
|
|
s.compiler_flags = folly_compiler_flags + ' -Wno-nullability-completeness'
|
|
s.author = "Facebook, Inc. and its affiliates"
|
|
s.source = { :git => "https://github.com/facebook/react-native.git", :tag => "#{s.version}" }
|
|
|
|
s.source_files = "**/*.{h,m,mm,swift}"
|
|
s.requires_arc = true
|
|
|
|
s.dependency "React-Core"
|
|
s.dependency "RCT-Folly", folly_version
|
|
|
|
# s.dependency "..."
|
|
|
|
# Enable codegen for this library
|
|
use_react_native_codegen!(s, {
|
|
:react_native_path => "../../..",
|
|
:js_srcs_dir => "./",
|
|
:library_type => "modules",
|
|
})
|
|
end
|