-
Notifications
You must be signed in to change notification settings - Fork 716
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
Flutter 3.29 Migration #1709
Flutter 3.29 Migration #1709
Conversation
@navaronbracke If you don't merge this, it won't pass CI in any PR 🚀 |
@@ -5,6 +5,7 @@ gradle-wrapper.jar | |||
/gradlew.bat | |||
/local.properties | |||
GeneratedPluginRegistrant.java | |||
.cxx/ |
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.
I saw this too in a different package. So makes sense to add this here.
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.
When you create a new project with Flutter 3.29 it is automatically created with this line.
@@ -66,6 +66,7 @@ | |||
ignoresPersistentStateOnLaunch = "NO" | |||
debugDocumentVersioning = "YES" | |||
debugServiceExtension = "internal" | |||
enableGPUValidationMode = "1" |
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.
Is this to disable Metal Validation in the example 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.
Yes, It is added automatically when you start the project in each platform
Co-authored-by: Navaron Bracke <brackenavaron@gmail.com>
unsafe_html
was removed in Dart 3.7.0enableGPUValidationMode
in macOS and iOS..cxx
folder to.gitignore
.