Skip to content

Commit 7a11983

Browse files
committed
feat(cap-7)!: migrate to capacitor 7
- update ml-kit to v7
1 parent da0cbee commit 7a11983

8 files changed

+1083
-1451
lines changed

.prettierignore

-2
This file was deleted.

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import PackageDescription
33

44
let package = Package(
55
name: "PantristCapacitorPluginMlKitTextRecognition",
6-
platforms: [.iOS(.v13)],
6+
platforms: [.iOS(.v14)],
77
products: [
88
.library(
99
name: "CapacitorPluginMlKitTextRecognitionPlugin",

PantristCapacitorPluginMlKitTextRecognition.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ Pod::Spec.new do |s|
1111
s.author = package['author']
1212
s.source = { :git => package['repository']['url'], :tag => s.version.to_s }
1313
s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
14-
s.ios.deployment_target = '13.0'
14+
s.ios.deployment_target = '14.0'
1515
s.dependency 'Capacitor'
16-
s.dependency 'GoogleMLKit/TextRecognition', '6.0.0'
16+
s.dependency 'GoogleMLKit/TextRecognition', '7.0.0'
1717
s.swift_version = '5.1'
1818
s.static_framework = true
1919
end

android/gradlew

100644100755
File mode changed.

ios/Podfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
platform :ios, '13.0'
1+
platform :ios, '15.5'
22

33
def capacitor_pods
44
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
55
use_frameworks!
66
pod 'Capacitor', :path => '../node_modules/@capacitor/ios'
77
pod 'CapacitorCordova', :path => '../node_modules/@capacitor/ios'
8-
pod 'GoogleMLKit/TextRecognition', '6.0.0'
8+
pod 'GoogleMLKit/TextRecognition', '7.0.0'
99
end
1010

1111
target 'Plugin' do

0 commit comments

Comments
 (0)