You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FYI, I think is related to the version of the com.android.application plugin, and affects a lot of third party packages. I didn't encounter this issue on some existing older flutter projects that use an older version of this plugin. I'm using the below and it compiles just fine.
plugins {
id "com.android.application" version "7.3.0" apply false
// ...
}
* What went wrong:
A problem occurred configuring project ':video_thumbnail'.
> Could not create an instance of type com.android.build.api.variant.impl.LibraryVariantBuilderImpl.
> Namespace not specified. Specify a namespace in the module's build file. See https://d.android.com/r/tools/upgrade-assistant/set-namespace for information about setting the namespace.
please add in build.gradle file
android {
namespace 'xyz.justsoft.video_thumbnail'
}
The text was updated successfully, but these errors were encountered: