When I am run the my flutter app, /android/app/ in this path automatically generate build folder & it contains some generated apk supported files & etc.
above list are the build folder paths
I didn't know where the issue occurs. Is this normal matter.
I had same problem, even worse, each run add new android folder inside build folder, and after some time I have to many nested folders nestedfolders img
I edit my android/build.gradle and change:
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
project.evaluationDependsOn(':app')
}
to:
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
that solve my problem :)
Problem starts after I add some dependencies, and update flutter to 2.5.0.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With