require 'json' package = JSON.parse(File.read(File.join(__dir__, '../','package.json'))) Pod::Spec.new do |s| s.name = 'ExpoPluginGeofencingBatch' 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 => '13.4', :tvos => '13.4' } s.swift_version = '5.4' s.source = { git: '' } s.static_framework = true s.dependency 'ExpoModulesCore' s.dependency "WoosmapGeofencing", '~> 4.0' s.dependency 'Batch', '~> 2.0.0' # Swift/Objective-C compatibility s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'SWIFT_COMPILATION_MODE' => 'wholemodule' } s.source_files = "**/*.{h,m,mm,swift,hpp,cpp}" end