gradle update-Flutter 3.29.0#232
Conversation
gradle update-Flutter 3.29.0
|
This pr just saved my entire day! Thanks 🙌 |
|
This pull request introduces significant updates to modernize the Android build system for the Migration to Kotlin DSL and Build System Updates:
Flutter and Android Integration Improvements:
Project Metadata and Linting:
Manifest and Resource Updates:
These changes collectively modernize the project, improve maintainability, and ensure compatibility with the latest Android and Flutter tooling. @Sameetdmr you can use this explanation for this PR (generated by copilot). Thank you for your contribution!! |
|
@edufolly what do we need to get this one merged? |
|
applied a temporary fix to assign a namespace only to the package with the
subprojects {
afterEvaluate { project ->
if (project.hasProperty('android') &&
project.group == 'io.github.edufolly.flutterbluetoothserial') {
project.android {
if (namespace == null) {
namespace 'io.github.edufolly.flutterbluetoothserial'
}
}
}
}
} |
No description provided.