AS编译报错:Execution failed for task ‘:processReleaseResources‘.> Android resource linking failed

背景:

AndroidStudio 3.2.4

AS Build 失败,提示:

解决过程:

1、【失败】用关键字Execution failed for task ':processReleaseResources'.
> Android resource linking failed 度了许久,大部分说是编译版本的配置有误。

修改均无效,度久未见良方。

2、【成功】用关键字AAPT: error: attribute layout_constraintLeft_toLeftOf度了一下,找到解决办法:Android Studio编译提示如下attribute layout_constraintBottom_toBottomOf (aka com.luck.pictureselector:layou_chenyu-CSDN博客

总结下,就是attribute layout_constraintLeft_toLeftOf报错,需要单独引入constraintlayout库。

(估计是AS版本低了,本来还认为这种自带UI的不应用出现找不到的情况呢)

implementation 'androidx.constraintlayout:constraintlayout:1.1.2'

 

你可能感兴趣的:(Androud开发与调试,android,android,studio)