react native 打包报错Could not determine the dependencies of task ':app:lintVitalRelease'.

执行:./gradlew assembleRelease 打包命令
报错信息 Could not determine the dependencies of task ':app:lintVitalRelease'.

解决办法:
在 android/app/build.gradle 中添加如下代码

android {
...
    lintOptions {
        checkReleaseBuilds false
        abortOnError false
    }
...
}

你可能感兴趣的:(react native 打包报错Could not determine the dependencies of task ':app:lintVitalRelease'.)