twitter_login icon indicating copy to clipboard operation
twitter_login copied to clipboard

Gradle Build issue with Flutter 3.27.1

Open vinay-elred opened this issue 11 months ago • 1 comments

Please update gradle to 8.0 or above.

vinay-elred avatar Jan 13 '25 07:01 vinay-elred

Yes please help, as soon as it is added to the project we get an error.

Flattih avatar Feb 04 '25 18:02 Flattih

till we get the resolution from the member. you can use this snippet in your module level build.gradle to continue.

subprojects {
    afterEvaluate { project ->
        if (project.hasProperty('android')) {
            project.android {
                if (namespace == null) {
                    namespace project.group
                }
            }
        }
    }
}

avinashk369 avatar Mar 14 '25 16:03 avinashk369