Error:resource style/TextAppearance.Compat.Notification.Info (aka {packageId}.test:style/TextAppearance.Compat.Notification.Info) not found Error:resource style/TextAppearance.Compat.Notification.Info (aka {packageId}.test:style/TextAppearance.Compat.Notification.Info) not found android android

Error:resource style/TextAppearance.Compat.Notification.Info (aka {packageId}.test:style/TextAppearance.Compat.Notification.Info) not found


Previously:

android:textAppearance="@style/TextAppearance.AppCompat.Notification"

Now the following is correct:

android:textAppearance="@style/TextAppearance.Compat.Notification"

Since:

compileSdkVersion 27buildToolsVersion "27.0.3" minSdkVersion 19 targetSdkVersion 27


In my case, I solved it by deleting all cached libraries from Gradle on:

\{userFolder}\.gradle\caches

delete cached libraries in windows


in my case i have added this line in gradle if u still want to use support libraries instead of AndroidX

implementation 'com.android.support:support-v4:28.0.0'