-
Notifications
You must be signed in to change notification settings - Fork 0
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
fix: updated dependencies and fixed some errors on methods #1
base: master
Are you sure you want to change the base?
Conversation
…ters Upgrade onRequestPermissionsResult parameters for Android
CHANGELOG.md
Outdated
@@ -1,3 +1,7 @@ | |||
# [0.4.1] - Moved to tflite flutter processor |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shouldn't we use 0.4.0?
android/build.gradle
Outdated
version '1.0-SNAPSHOT' | ||
|
||
buildscript { | ||
ext.kotlin_version = '1.3.50' | ||
ext.kotlin_version = '1.6.10' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it's too old, we may want to update it.
android/build.gradle
Outdated
@@ -1,8 +1,8 @@ | |||
group 'com.tfliteflutter.tflite_flutter_helper' | |||
group 'io.chaosdev.tflite_flutter_processing' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we can change it
@@ -26,7 +26,7 @@ dependencies: | |||
# The following adds the Cupertino Icons font to your application. | |||
# Use with the CupertinoIcons class for iOS style icons. | |||
cupertino_icons: ^1.0.2 | |||
tflite_flutter_helper: | |||
tflite_flutter_processing: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we want to change the name? Maybe we want, but it's a question
plugins { | ||
id "dev.flutter.flutter-plugin-loader" version "1.0.0" | ||
id "com.android.application" version "7.1.2" apply false | ||
// id "org.jetbrains.kotlin.android" version "{kotlinVersion}" apply false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// id "org.jetbrains.kotlin.android" version "{kotlinVersion}" apply false |
} | ||
|
||
include ":app" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
include ":app" | |
include ":app" | |
pubspec.yaml
Outdated
version: 0.3.0 | ||
homepage: https://www.github.com/am15h/tflite_flutter_helper | ||
version: 0.4.1 | ||
homepage: https://www.github.com/lucasoskorep/tflite_flutter_processing |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change it
pubspec.yaml
Outdated
|
||
environment: | ||
sdk: ">=2.12.0 <3.0.0" | ||
flutter: ">=1.10.0" | ||
sdk: '>=2.18.0 <4.0.0' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use "
quiver: ^3.2.1 | ||
path_provider: ^2.1.3 | ||
tflite_flutter: ^0.10.4 | ||
tuple: ^2.0.2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we need?
tuple: ^2.0.2 | ||
camera: ^0.11.0+1 | ||
ffi: ^2.1.2 | ||
image: ^4.2.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we want to release, it should be multiple packages. One for image processor and other for other stuff
Check the tests before merge it |
No description provided.