react-native-custom-tabs
react-native-custom-tabs copied to clipboard
No resource found that matches the given name: attr 'android:keyboardNavigationCluster'
Error when generating a release build:
:react-native-custom-tabs:verifyReleaseResources/Users/cameronbates/.gradle/caches/transforms-1/files-1.1/appcompat-v7-26.1.0.aar/d966a29d4964b9817b018d8a3a1d16a4/res/values-v26/values-v26.xml:13:5-16:13: AAPT: No resource found that matches the given name: attr 'android:keyboardNavigationCluster'
build.gradle
needs to be updated so builds on RN56 work. It looks like PR #33 fixes this issue
Same issue here (RN57) but #33 won't fix it for me :(
EDIT: it worked when I modified my android/build.gradle
file by adding:
buildscript {
ext {
buildToolsVersion = "27.0.3"
minSdkVersion = 21
compileSdkVersion = 27
targetSdkVersion = 26
supportLibVersion = "27.1.1"
}
...
}