-
Notifications
You must be signed in to change notification settings - Fork 109
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
Support for Gradle 8.3.0: Define namespace #100
Comments
Any chance we can get this in a 0.5.0 or even a 1.0 release? @kay4ik I don't supposed you forked the fix anywhere? |
@djensen47 No I didn't forked the solution, but I can do that next week and create a merge request. Maybe @jpnurmi can than accept this MR |
Any updates on this? This is blocking us from upgrading to Flutter 3.29 |
@kay4ik @djensen47 @ricardoboss @jpnurmi @sitic I am facing the same issue is there any solution?
Flutter => 3.29.0 |
Hey,
when running an android build using the latest gradle version, following error occurs:
To solve this problem following line needs to be defined (probably):
In
android/src/build.gradle
Also the min SDK version should be increased to 19 according to this warning:
C/C++: Platform version 16 is unsupported by this NDK, using 19 instead. Please change minSdk to at least 19 to avoid this warning.
This should be everything the console is asking for :)
Recommendation
I have avoided all warnings and errors by making following changes:
jCentral()
repository withmavenCentral()
because it is already deprecatedcompileSdkVersion
to 34jvmTarget
of 1.8minSdkVersion
to 19Now there are no warnings and errors anymore and the
android/src/build.gradle
is looking like that:The text was updated successfully, but these errors were encountered: