Added iOS task text library podspec template

This commit is contained in:
Prianka Liz Kariat 2023-04-19 01:20:23 +05:30
parent 3553eac375
commit 08436145f7

View File

@ -0,0 +1,21 @@
Pod::Spec.new do |s|
s.name = 'MediaPipeTaskText'
s.version = '${MPP_BUILD_VERSION}'
s.authors = 'Google Inc.'
s.license = { :type => 'Apache',:file => "LICENSE" }
s.homepage = 'https://github.com/google/mediapipe'
s.source = { :http => '${MPP_DOWNLOAD_URL}' }
s.summary = 'MediaPipe Task Library - Text'
s.description = 'The Natural Language APIs of the MediaPipe Task Library'
s.ios.deployment_target = '11.0'
s.module_name = 'MediaPipeTaskText'
s.static_framework = true
s.user_target_xcconfig = {
'OTHER_LDFLAGS' => '-all_load',
'STRIP_INSTALLED_PRODUCT' => 'NO'
}
s.library = 'c++'
s.vendored_frameworks = 'frameworks/MediaPipeTaskText.xcframework'
end