Files
tensorflow--tensorflow/tensorflow/lite/ios/TensorFlowLiteSelectTfOps.podspec.template
WeHub Mirror 16d3f15320
ARM CI / build (3.10) (push) Has been cancelled
cffconvert / validate (push) Has been cancelled
Creates a GitHub Issue when a PR Rolled back via Commit to Master / create-issue-on-pr-rollback (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
WeHub snapshot of ee606724a5c2f63bf60704cb3e1b169618993fd9
2026-08-07 16:11:07 +08:00

37 lines
1.4 KiB
Plaintext

Pod::Spec.new do |s|
s.name = '${POD_NAME}'
s.version = '${TFL_BUILD_VERSION}'
s.authors = 'Google Inc.'
s.license = { :type => 'Apache' }
s.homepage = 'https://github.com/tensorflow/tensorflow'
s.source = { :http => "${TFL_DOWNLOAD_URL}" }
s.summary = 'TensorFlow Lite'
s.description = <<-DESC
This pod can be used in addition to `TensorFlowLiteSwift` or
`TensorFlowLiteObjC` pod, in order to enable Select TensorFlow ops. The
resulting binary should also be force-loaded to the final app binary.
DESC
s.cocoapods_version = '>= ${TFL_MIN_COCOAPODS_VERSION}'
s.ios.deployment_target = '12.0'
s.module_name = 'TensorFlowLiteSelectTfOps'
s.library = 'c++'
s.vendored_frameworks = 'Frameworks/TensorFlowLiteSelectTfOps.xcframework'
s.resource_bundle = { 'TensorFlowLiteSelectTfOps' => 'Frameworks/TensorFlowLiteSelectTfOps.xcframework/PrivacyInfo.xcprivacy' }
s.weak_frameworks = 'CoreML'
# TODO(b/149803849): Remove this after adding support for simulators.
s.pod_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386 x86_64 arm64',
'ENABLE_USER_SCRIPT_SANDBOXING' => 'NO',
}
# TODO(b/149803849): Remove this after adding support for simulators.
s.user_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386 x86_64 arm64',
'ENABLE_USER_SCRIPT_SANDBOXING' => 'NO',
}
end