79722176

Date: 2025-08-01 07:17:25
Score: 2.5
Natty:
Report link

In case someone is getting the similar issue in the Flutter. You can make the following changes to your app/build.gradle file.

allprojects {
    repositories {
        google()
        mavenCentral()
    } 

       configurations.all {
        resolutionStrategy.eachDependency { details ->
            if (details.requested.group == 'com.facebook.android' &&
                details.requested.name == 'facebook-android-sdk') {
                details.useVersion '18.1.3'
            }
        }
    }
}
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): getting the similar issue
  • Low reputation (1):
Posted by: Shehzad Ahmad