52 lines
1.5 KiB
Ruby
52 lines
1.5 KiB
Ruby
require 'json'
|
|
|
|
package = JSON.parse(File.read(File.join(__dir__, '..', 'package.json')))
|
|
|
|
new_arch_enabled = ENV['RCT_NEW_ARCH_ENABLED'] == '1'
|
|
new_arch_compiler_flags = '-DRCT_NEW_ARCH_ENABLED'
|
|
compiler_flags = ''
|
|
|
|
if new_arch_enabled
|
|
compiler_flags << ' ' << new_arch_compiler_flags
|
|
end
|
|
|
|
Pod::Spec.new do |s|
|
|
s.name = 'ExpoRouter'
|
|
s.version = package['version']
|
|
s.summary = package['description']
|
|
s.description = package['description']
|
|
s.license = package['license']
|
|
s.author = package['author']
|
|
s.homepage = package['homepage']
|
|
s.platforms = {
|
|
:ios => '15.1'
|
|
}
|
|
s.swift_version = '5.9'
|
|
s.source = { git: 'https://github.com/expo/expo.git' }
|
|
s.static_framework = true
|
|
|
|
s.dependency 'ExpoModulesCore'
|
|
|
|
add_dependency(s, "RNScreens")
|
|
|
|
# Swift/Objective-C compatibility
|
|
s.pod_target_xcconfig = {
|
|
'DEFINES_MODULE' => 'YES',
|
|
'SWIFT_COMPILATION_MODE' => 'wholemodule',
|
|
'OTHER_SWIFT_FLAGS' => "$(inherited) #{compiler_flags}",
|
|
}
|
|
|
|
s.exclude_files = 'Tests/**/*'
|
|
|
|
if !$ExpoUseSources&.include?(package['name']) && ENV['EXPO_USE_SOURCE'].to_i == 0 && File.exist?("#{s.name}.xcframework") && Gem::Version.new(Pod::VERSION) >= Gem::Version.new('1.10.0')
|
|
s.source_files = "**/*.h"
|
|
s.vendored_frameworks = "#{s.name}.xcframework"
|
|
else
|
|
s.source_files = "**/*.{h,m,swift,mm,cpp}"
|
|
end
|
|
|
|
s.test_spec 'Tests' do |test_spec|
|
|
test_spec.source_files = 'Tests/**/*.{m,swift}'
|
|
end
|
|
end
|