> Task :app:processEncapProDebugResources FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:processEncapProDebugResources'.
> A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade
> Path '/home/user/projects/xxxxx/base/build/intermediates/compiled_local_resources/debug/out' is not a readable directory.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/6.1.1/userguide/command_line_interface.html#sec:command_line_warnings

解决办法
删除工程根目录下的 .gradle目录
user@hulk-pc:~/projects/xxxx/MyApp$ rm -r .gradle/
再次编译,解决问题
文章描述了一次在构建Android项目时遇到的失败,原因是在执行app:processEncapProDebugResources任务时路径错误。解决方案是删除根目录下的.gradle文件并重新编译,同时提及了使用Gradle6.1.1时的过时功能警告。
696

被折叠的 条评论
为什么被折叠?



