You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -45,13 +45,13 @@ Google's ML Kit for Flutter is a set of [Flutter plugins](https://flutter.io/pla
45
45
46
46
Because this plugin uses platform channels, no Machine Learning processing is done in Flutter/Dart, all the calls are passed to the native platform using `MethodChannel` in Android and `FlutterMethodChannel` in iOS, and executed using the Google's native APIs. Think of this plugin as a bridge between your app and Google's native ML Kit APIs. This plugin only passes the call to the native API and the processing is done by Google's API. It is important that you understand this concept when it comes to debugging errors for your ML model and/or app.
47
47
48
-
- Since the plugin uses platform channels, you may encounter issues with the native API. Before submitting a new issue, identify the source of the issue. You can run both iOS and/or Android native [example apps by Google](https://github.com/googlesamples/mlkit) and make sure that the issue is not reproducible with their native examples. If you can reproduce the issue in their apps then report the issue to Google. The [authors](https://github.com/flutter-ml/google_ml_kit_flutter/blob/master/AUTHORS) do not have access to the source code of their native APIs, so you need to report the issue to them. If you find that their example apps are okay and still you have an issue using this plugin, then look at our [closed and open issues](https://github.com/googlesamples/mlkit/issues). If you cannot find anything that can help you then report the issue and provide enough details. Be patient, someone from the community will eventually help you.
48
+
- Since the plugin uses platform channels, you may encounter issues with the native API. Before submitting a new issue, identify the source of the issue. You can run both iOS and/or Android native [example apps by Google](https://github.com/googlesamples/mlkit) and make sure that the issue is not reproducible with their native examples. If you can reproduce the issue in their apps then report the issue to Google. The [authors](https://github.com/flutter-ml/google_ml_kit_flutter/blob/master/AUTHORS) do not have access to the source code of their native APIs, so you need to report the issue to them. If you find that their example apps are okay and still you have an issue using this plugin, then look at our [closed and open issues](https://github.com/flutter-ml/google_ml_kit_flutter/issues). If you cannot find anything that can help you then report the issue and provide enough details. Be patient, someone from the community will eventually help you.
49
49
50
50
## Requirements
51
51
52
52
### iOS
53
53
54
-
- Minimum iOS Deployment Target: 10.0
54
+
- Minimum iOS Deployment Target: 12.0
55
55
- Xcode 13 or newer
56
56
- Swift 5
57
57
- ML Kit only supports 64-bit architectures (x86_64 and arm64). Check this [list](https://developer.apple.com/support/required-device-capabilities/) to see if your device has the required device capabilities. More info [here](https://developers.google.com/ml-kit/migration/ios).
@@ -66,7 +66,7 @@ Then your Podfile should look like this:
66
66
67
67
```ruby
68
68
# add this line:
69
-
$iOSVersion='10.0'
69
+
$iOSVersion='12.0'
70
70
71
71
post_install do |installer|
72
72
# add these lines:
@@ -94,8 +94,8 @@ Notice that the minimum `IPHONEOS_DEPLOYMENT_TARGET` is 10.0, you can set it to
94
94
### Android
95
95
96
96
- minSdkVersion: 21
97
-
- targetSdkVersion: 31
98
-
- compileSdkVersion: 31
97
+
- targetSdkVersion: 33
98
+
- compileSdkVersion: 33
99
99
100
100
## Migrating from ML Kit for Firebase
101
101
@@ -120,7 +120,7 @@ To use custom models hosted in firebase in iOS, you have to update your app's Po
120
120
First, include `GoogleMLKit/LinkFirebase` and `Firebase` in your Podfile:
0 commit comments