Skip to content

Commit

Permalink
fix(ios): set explicit ml-kit version in podspec file #8
Browse files Browse the repository at this point in the history
  • Loading branch information
NLueg committed Mar 22, 2023
1 parent 4d1bdca commit dda78e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PantristCapacitorPluginMlKitTextRecognition.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Pod::Spec.new do |s|
s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
s.ios.deployment_target = '13.0'
s.dependency 'Capacitor'
s.dependency 'GoogleMLKit/TextRecognition'
s.dependency 'GoogleMLKit/TextRecognition', '~> 3.2.0'
s.swift_version = '5.1'
s.static_framework = true
end
2 changes: 1 addition & 1 deletion ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ def capacitor_pods
use_frameworks!
pod 'Capacitor', :path => '../node_modules/@capacitor/ios'
pod 'CapacitorCordova', :path => '../node_modules/@capacitor/ios'
pod 'GoogleMLKit/TextRecognition','3.2.0'
pod 'GoogleMLKit/TextRecognition', '~> 3.2.0'
end

target 'Plugin' do
Expand Down

0 comments on commit dda78e9

Please sign in to comment.