Solved — Flutter Error : Could not resolve all artifacts for configuration ‘:image_picker_android:debugUnitTestRuntimeClasspath’

Execution failed for task ':app:lintVitalRelease'.

--

build.gradle

1: Go to your app-level build.grade.

2:Scroll down to “android{ “ paste this code carefully(not disturbing any other brakets.)

lintOptions {
disable 'InvalidPackage'
disable "Instantiatable"
checkReleaseBuilds false
abortOnError false
}

3:run “flutter clean” 4:run “flutter pub get” 5:If you want to build apk of your project then run “flutter build apk”

--

--