react-native-custom-tabs icon indicating copy to clipboard operation
react-native-custom-tabs copied to clipboard

No resource found that matches the given name: attr 'android:keyboardNavigationCluster'

Open ds8k opened this issue 6 years ago • 1 comments

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

ds8k avatar Sep 17 '18 19:09 ds8k

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"
    }
...
}

psegalen avatar Sep 24 '18 21:09 psegalen