react-native-config: AAPT: error: resource android:attr/colorError not found.
I try to build using android studio but it fails resource android:style/TextAppearance.Material.Widget.Button.Borderless.Colored not found.
pointing to the react-native-config. I know that it has to do with the fact that colorError i ssupported in android 26 or higher and this package is on 23, how could I fix this without downgrading?
About this issue
- Original URL
- State: open
- Created 6 years ago
- Comments: 16
Thanks @Summys Formatted code, place this inside
allprojects {
By forcing other packages to use 27 Set this code in android/build.gradle
And for react native v0.59+ update buildToolsVersion to 28
If you are using RN 59 you need an updated version of @Summys and @Tommos0 's answers inside allprojects in build.gradle:
thank @Tommos0 …God Bless You…