40 lines
1.0 KiB
Ruby
40 lines
1.0 KiB
Ruby
require 'json'
|
|
|
|
package = JSON.parse(File.read(File.join(__dir__, '..', 'package.json')))
|
|
|
|
Pod::Spec.new do |s|
|
|
s.name = 'ExpoMediaLibrary'
|
|
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',
|
|
:tvos => '15.1'
|
|
}
|
|
s.source = { git: 'https://github.com/expo/expo.git' }
|
|
s.static_framework = true
|
|
s.frameworks = 'Photos','PhotosUI'
|
|
|
|
s.dependency 'ExpoModulesCore'
|
|
s.dependency 'React-Core'
|
|
|
|
s.resource_bundles = {'ExpoMediaLibrary_privacy' => ['PrivacyInfo.xcprivacy']}
|
|
|
|
# Swift/Objective-C compatibility
|
|
s.pod_target_xcconfig = {
|
|
'DEFINES_MODULE' => 'YES'
|
|
}
|
|
|
|
s.source_files = "**/*.{h,m,swift}"
|
|
|
|
s.exclude_files = 'Tests/'
|
|
s.test_spec 'Tests' do |test_spec|
|
|
test_spec.dependency 'ExpoModulesTestCore'
|
|
|
|
test_spec.source_files = 'Tests/**/*.{m,swift}'
|
|
end
|
|
end
|