我有一个带有基本品牌和多个白标品牌以及多个服务器目标的应用程序。在我的应用程序的 build.gradle 中,风味定义为:
flavorDimensions("server", "whitelabel")
在我src/main/res/drawable
的基础品牌中,我有一个 logo.xml VectorDrawable,它被覆盖在src/whitelabel1/res/drawable
.
当我的应用程序的 build.config 包含vectorDrawables.useSupportLibrary = true
正确的 logo.xml 时,将在我的 ImageView 中使用。如果我从 Whitelabel1的 apk 中删除useSupportLibrary
ImageView 呈现logo.xmlmain
<ImageView
android:id="@+id/imageLogo"
android:layout_width="@dimen/viewXS"
android:layout_height="wrap_content"
android:layout_margin="@dimen/marginXS"
android:adjustViewBounds="true"
android:padding="@dimen/marginXS"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_logo" />