We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
After migrating the project to support Android 14, using Gradle 8.4. The FlutterToast not work anymore due to namespace problem
The text was updated successfully, but these errors were encountered:
To fix all namespace issues just edit your build.grade like this:
build.grade
subprojects { project.buildDir = "${rootProject.buildDir}/${project.name}" afterEvaluate { // check if android block is available if (it.hasProperty('android')) { if (it.android.namespace == null) { def manifest = new XmlSlurper().parse(file(it.android.sourceSets.main.manifest.srcFile)) def packageName = [email protected]() println("Setting ${packageName} as android namespace") android.namespace = packageName } } } }
this will add namespaces to packages
Sorry, something went wrong.
No branches or pull requests
After migrating the project to support Android 14, using Gradle 8.4. The FlutterToast not work anymore due to namespace problem
The text was updated successfully, but these errors were encountered: