Android\stripe\res\drawable\ic_unknown.xml : Can't process attribute
android:fillColor="@android:color/white": references to other resources
are not supported by build-time PNG generation.
答案 0 :(得分:2)
我在升级android studio后面临一些类似的问题,解决问题的方法是直接给出颜色代码,而不是在矢量资产中引用颜色代码
在你的情况下,而不是给予
android:fillColor="@android:color/white"
使用
android:fillColor="#ffffff"