#!podfile
# Uncomment the next line to define a global platform for your project
#platform :ios, '15.0'
target 'YourReconoSerApp' do
use_frameworks!
# Pods for YourReconoSerApp
pod 'lottie-ios'
pod 'MarkdownView'
pod 'SwiftyJSON'
pod 'TensorFlowLiteSwift'
pod 'ReconoSerSDK'
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end
end