Answers for "Execution failed for task ':app:lintVitalRelease', flutter"

2

Execution failed for task ':app:lintVitalRelease'.

android {
    ...
    lintOptions {
        checkReleaseBuilds false
    }
}
Posted by: Guest on October-16-2020
1

Execution failed for task ':app:lintVitalRelease flutter build

android {
compileSdkVersion 28

lintOptions {
    disable 'InvalidPackage'
    //Put the following line
    checkReleaseBuilds false
    //abortOnError false
}
Posted by: Guest on July-20-2020

Code answers related to "Execution failed for task ':app:lintVitalRelease', flutter"

Browse Popular Code Answers by Language