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
Is the error related to the library not having a namespace specified in its build.gradle file?
What went wrong:
A problem occurred configuring project ':call_log'.
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.
Just find build.gradle inside /External Libraries/Flutter Plugins/call_log module and add this line:
android {
namespace "sk.fourq.calllog" // Add this line
...
}
Then go to AndroidManifest (folder: call_log/android/src.main) and remove package="sk.fourq.calllog"
I'm having this problem with several libraries that haven't been updated for years
Gradle 8 and above compatible issue
The text was updated successfully, but these errors were encountered: