-
Notifications
You must be signed in to change notification settings - Fork 854
feat: updated template of all plugins and example app to Flutter 3.29 standard #760
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 23 commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
2ff2116
feat: updated example app to Flutter 3.29 template
OutdatedGuy 5594941
feat: updated google_mlkit_barcode_scanning to Flutter 3.29 template
OutdatedGuy 965b3d8
feat: updated google_mlkit_commons to Flutter 3.29 template
OutdatedGuy 6b928b6
feat: updated google_mlkit_digital_ink_recognition to Flutter 3.29 te…
OutdatedGuy 317827f
feat: updated google_mlkit_document_scanner to Flutter 3.29 template
OutdatedGuy 36ed737
feat: updated google_mlkit_entity_extraction to Flutter 3.29 template
OutdatedGuy bc8106e
feat: updated google_mlkit_face_detection to Flutter 3.29 template
OutdatedGuy 6531988
feat: updated google_mlkit_face_mesh_detection to Flutter 3.29 template
OutdatedGuy 753eaab
feat: updated google_mlkit_image_labeling to Flutter 3.29 template
OutdatedGuy 207a21e
feat: updated google_mlkit_language_id to Flutter 3.29 template
OutdatedGuy 99b6013
feat: updated google_mlkit_object_detection to Flutter 3.29 template
OutdatedGuy 916c0cd
feat: updated google_mlkit_pose_detection to Flutter 3.29 template
OutdatedGuy 4961572
feat: updated google_mlkit_selfie_segmentation to Flutter 3.29 template
OutdatedGuy 1528f12
feat: updated google_mlkit_smart_reply to Flutter 3.29 template
OutdatedGuy f1812b9
feat: updated google_mlkit_subject_segmentation to Flutter 3.29 template
OutdatedGuy 1ba3243
feat: updated google_mlkit_text_recognition to Flutter 3.29 template
OutdatedGuy c0c9c69
feat: updated google_mlkit_translation to Flutter 3.29 template
OutdatedGuy eb0d64e
feat: updated google_ml_kit to Flutter 3.29 template
OutdatedGuy 57f1f73
chore: updated example app dependencies
OutdatedGuy 7310a5d
docs: updated versioning and changelog
OutdatedGuy 8881dfc
docs: updated readme for android compileSdkVersion
OutdatedGuy b7bca43
chore: updated google_mlkit_commons to 0.10.0
OutdatedGuy 8fc0791
docs: update google_mlkit_text_recognition version
OutdatedGuy 11ef00d
Revert "docs: update google_mlkit_text_recognition version"
OutdatedGuy 6294772
docs: fix google_mlkit_text_recognition versioning
OutdatedGuy 173a6a8
docs: updated Changelog with additional changes
OutdatedGuy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| # google\_ml\_kit example app | ||
| # google_ml_kit example app | ||
|
|
||
| Demonstrates how to use the google_mlkit plugins. | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| plugins { | ||
| id("com.android.application") | ||
| id("kotlin-android") | ||
| // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins. | ||
| id("dev.flutter.flutter-gradle-plugin") | ||
| } | ||
|
|
||
| android { | ||
| namespace = "com.google.ml.kit.flutter.example" | ||
| compileSdk = flutter.compileSdkVersion | ||
| ndkVersion = flutter.ndkVersion | ||
|
|
||
| compileOptions { | ||
| sourceCompatibility = JavaVersion.VERSION_11 | ||
| targetCompatibility = JavaVersion.VERSION_11 | ||
| } | ||
|
|
||
| kotlinOptions { | ||
| jvmTarget = JavaVersion.VERSION_11.toString() | ||
| } | ||
|
|
||
| defaultConfig { | ||
| applicationId = "com.google.ml.kit.flutter.example" | ||
| minSdk = 24 | ||
| targetSdk = flutter.targetSdkVersion | ||
| versionCode = flutter.versionCode | ||
| versionName = flutter.versionName | ||
| } | ||
|
|
||
| buildTypes { | ||
| release { | ||
| signingConfig = signingConfigs.getByName("debug") | ||
| } | ||
| } | ||
|
|
||
| aaptOptions { | ||
| noCompress("tflite") // Your model's file extension: "tflite", "lite", etc. | ||
| } | ||
| } | ||
|
|
||
| dependencies { | ||
| // Add language package you need to use | ||
| implementation("com.google.mlkit:text-recognition-chinese:16.0.0") | ||
| implementation("com.google.mlkit:text-recognition-devanagari:16.0.0") | ||
| implementation("com.google.mlkit:text-recognition-japanese:16.0.0") | ||
| implementation("com.google.mlkit:text-recognition-korean:16.0.0") | ||
| } | ||
|
|
||
| flutter { | ||
| source = "../.." | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.