Lottie 2.8.0 with AAPT2 error: check logs for details
Lottie 2.8.0 with AAPT2 error: check logs for details
我想在 android 3.1.1 中安装 Lottie 2.8.0,但在编译库时出现此错误。
我已经阅读了其他问题,但在这个问题上没有帮助我。我应该怎么做才能解决它?
错误消息:AAPT2 错误:检查日志了解详细信息
在哪里可以找到日志?以及如何解决?
提前谢谢你:)
几天前我也 运行 遇到了类似的问题,经过一番搜索,我在他们的官方 github 页面底部找到了这个:
https://github.com/airbnb/lottie-android
Lottie 2.8.0 and above only supports projects that have been migrated
to androidx. For more information, read Google's migration guide.
所以你有两个选择,要么将你的项目迁移到 androidx,要么将你的库版本降级到 2.7.0.
我现在正在使用以下内容:
implementation 'com.airbnb.android:lottie:2.7.0'
我想在 android 3.1.1 中安装 Lottie 2.8.0,但在编译库时出现此错误。 我已经阅读了其他问题,但在这个问题上没有帮助我。我应该怎么做才能解决它? 错误消息:AAPT2 错误:检查日志了解详细信息
在哪里可以找到日志?以及如何解决?
提前谢谢你:)
几天前我也 运行 遇到了类似的问题,经过一番搜索,我在他们的官方 github 页面底部找到了这个: https://github.com/airbnb/lottie-android
Lottie 2.8.0 and above only supports projects that have been migrated to androidx. For more information, read Google's migration guide.
所以你有两个选择,要么将你的项目迁移到 androidx,要么将你的库版本降级到 2.7.0.
我现在正在使用以下内容:
implementation 'com.airbnb.android:lottie:2.7.0'