Error: Execution failed for task ':app: lintVitalRelease' any one can solve it?

后端 未结 8 1961
一向
一向 2020-12-08 18:49

Why I get this error I try to clean and rebuild application and make application release true and I get same error

Error:Execution failed for task \':

8条回答
  •  醉酒成梦
    2020-12-08 19:01

    Open your build.gradle file and add the code below under android:

    android {
    
        lintOptions { 
          checkReleaseBuilds false 
        }
    

提交回复
热议问题