After upgrade to androidx and SDK 28 I get the following error when building my project:
.../app/src/main/res/values/styles.xml:90:5-93:13: AAPT: error: expected reference but got (raw string) #000000.
The relevant lines of values/styles.xml:
<style name="menu_labels_style">
<item name="android:background">@drawable/fab_label_background</item>
<item name="android:textColor">@color/white</item>
</style>
The fab_label_background resource (just in case) is:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/black_semi_transparent"/>
<padding
android:left="16dp"
android:top="4dp"
android:right="16dp"
android:bottom="4dp"/>
<corners
android:radius="2dp"/>
</shape>