References to other resources are not supported by build-time PNG generation

前端 未结 8 2048
陌清茗
陌清茗 2020-12-12 11:25

AndroidStudio 3.0 / Android Gradle plugin 3.0


  

8条回答
  •  忘掉有多难
    2020-12-12 12:13

    If your minSdkVersion is 21 you can disable the generation of PNG by adding this line:

    // set to an empty list to disable the feature
    vectorDrawables.generatedDensities = [] 
    

    Removing this line will still generate the PNGs.

    Source: http://google.github.io/android-gradle-dsl/current/com.android.build.gradle.internal.dsl.VectorDrawablesOptions.html

提交回复
热议问题