Flutter Error : Could not resolve all artifacts for configuration ‘:image_picker_android:debugUnitTestRuntimeClasspath’
The above error happens if you have problem in the app build gradle configuration.
If you set up android.gradle like you won’t have the problem anymore.
Make sure you have the lintOptions code
lintOptions {
disable 'InvalidPackage'
disable "Instantiatable"
checkReleaseBuilds false
abortOnError false
}