Execution failed for task ':react-native-http-cache:verifyReleaseResources'. > com.android.ide.commo

参考链接:https://blog.csdn.net/u013089582/article/details/84374577

react-native 打包报 Execution failed for task ':react-native-http-cache:verifyReleaseResources'. > com.android.ide.commo 这是因为SDK版本不匹配,原因是0.57.1将Android SDK的版本更新到27了,这与大多第三方使用了原生代码的插件不兼容了,因为第三方更新不及时,SDK还是旧的版本。

可查看react-native-http-cache的build.gradle文件,修改这个build.gradle,使其与android/build.gradle(也可能是android/app/build.gradle)里面的SDK版本保持一致,将build.gradle里的compile改为implementation,因为compile已过时。然后重新打包

改后截图:

Execution failed for task ':react-native-http-cache:verifyReleaseResources'. > com.android.ide.commo_第1张图片
 

你可能感兴趣的:(React,Native)