且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

react-native-fbsdk错误:找不到与给定名称匹配的资源:attr'android:keyboardNavigationCluster'

更新时间:2023-11-16 18:36:52

转到 React-Native Project :android/build.gradle文件并将fbsdk版本限制为 4.28.0 .

Go to React-Native Project : android/build.gradle file and restrict fbsdk Version to 4.28.0.

allprojects {
    repositories {
        ...
        configurations.all {
            resolutionStrategy {
                force 'com.facebook.android:facebook-android-sdk:4.28.0'
            }
        }
    }
}

如果您再次遇到如下错误:

If you have another error like below:

检索父项时出错:找不到与给定名称'android:TextAppearance.Material.Widget.Button.Colored'`相匹配的资源.

Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Colored'`.

您可以尝试:

allprojects {
    repositories {
        ...
        configurations.all {
            resolutionStrategy {
                force 'com.facebook.android:facebook-android-sdk:4.22.1'
            }
        }
    }
}

来源: rafaesc