I got this error in sdk version 27. My gradle setting is
compileSdkVersion 27
buildToolsVersion '27.0.3'
defaultConfig {
applicationId 'com.abc.def'
minSdkVersion 21
targetSdkVersion 27
versionCode 2
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
This article doesn't help. I don't see anywhere use this code
android:textAppearance="@style/TextAppearance.AppCompat.Notification"
just have code like this
android:textAppearance="?android:attr/textAppearance"
Any idea on How to fix it? Much appreciated!