android – 构建时PNG生成不支持对其他资源的引用
作者:互联网
AndroidStudio 3.0 / Android Gradle插件3.0
<vector>
<path android:fillColor="@color/image_button_disabled"/>
</vector>
我收到此错误:
references to other resources are not supported by build-time PNG generation
是否有可能解决它或者它是一个弃用的解决方案?
解决方法:
在您的app build.gradle中添加以下行:
defaultConfig{
vectorDrawables.useSupportLibrary = true
}
有关详情,请参见Android Developers: Vector Drawables Backward Compatibility Solution.
标签:android-studio-3-0,android,resources 来源: https://codeday.me/bug/20190930/1834469.html