Questions tagged [react-native-fbsdk]

Questions related to "React Native" SDK from facebook for Android & iOS

A React Native wrapper around the Facebook SDKs for Android and iOS. Provides access to Facebook login, sharing, graph requests, app events etc.

Related links to learn more

The project is backed by Facebook Inc.

325 questions
42
votes
7 answers

Facebook Sdk Android Error Building

I am trying to build my react-native project and using react-native fbsdk. However, I get these errors: /home/luiz/MYP/app/node_modules/react-native-fbsdk/android/build/intermediates/res/merged/release/values-v24/values-v24.xml:3: AAPT: Error…
Luiz
  • 2,429
  • 8
  • 28
  • 43
41
votes
1 answer

The identity provider configuration is not found - React Native Firebase Authentication with FacebookAuthProvider

The identity provider configuration is not found I am getting this error when I try to authenticate to firebase using FacebookAuthProvider. I am using react-native-fbsdk for facebook authentication integration with react-native. my aim is to login…
23
votes
8 answers

Could not find com.android.support:appcompat-v7:25.3.1

I suddenly started getting this error when trying to build. This was all working a few weeks ago with no changes that I know of. The issue seems to be related to react-native-fbsdk, but looking through its build.gradle it does not list…
atkayla
  • 8,143
  • 17
  • 72
  • 132
23
votes
3 answers

Change the FB login button text (react-native-fbsdk)

I am using react-native-fbsdk. How can I change the fb login button text from 'Login with facebook' to 'Continue with fb'? The component looks like this, and I can't find a way to change it:
perrosnk
  • 835
  • 2
  • 13
  • 23
19
votes
4 answers

FB SDK Error: Login Failed (react-native)

I'm currently setting up Facebook Authentication for my Reach Native application. After the usual problems with the react-native-fbsdk setup, now the Facebook App Events work and the LoginManager loads up. My problem: After Authorisation the…
Jonas
  • 355
  • 1
  • 4
  • 16
16
votes
1 answer

React Native Android: Method does not override or implement a method from a supertype

I've added react-native-fbsdk to my react native project and have it building fine on iOS. But on the android side, I can't get gradle to build the project. When trying to compile react-native-fbsdk, I'm hitting: "method does not override or…
Jon Cursi
  • 3,301
  • 4
  • 27
  • 53
15
votes
2 answers

Cannot resolve symbol ReactApplication/ReactNativeHost

I have a react native running perfectly on iOS but does not compile in Android studio due to import issues in MainApplication and MainActivity. I followed the React Native FBSDK guidelines. In MainApplication I get "Cannot resolve symbol" on import…
mscrrrr
  • 151
  • 1
  • 4
14
votes
4 answers

redux-observable you provided 'undefined' where a stream was expected

I'm using the fbsdk to get user details in an ajax request. So it makes sense to do this in a redux-observable epic. The way the fbsdk request goes, it doesn't have a .map() and .catch() it takes the success and failure callbacks: code: export const…
14
votes
6 answers

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

Today, I face the error mentioned in this post: Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Borderless.Colored' The funny thing (and the difference) is - our…
13
votes
10 answers

FB login - Firebase.Auth() Error: The supplied auth credential is malformed or has expired

I'm using react-native-fbsdk: 0.8.0, react-native-firebase: ^5.2.2, react-native: ^0.57.4 and Facebook Test User account. This happened so suddenly. Once I sign out from firebase and try to log in again with Facebook. Error: The supplied auth…
Kyo Kurosagi
  • 2,177
  • 1
  • 18
  • 18
13
votes
3 answers

Native component for "RCTFBLoginButton" does not exist

im posting here because ive done like 12hours searching and trying things to resolve my issue , but just cant find the solution. Here is a screen of my errors: React native debugger I have followed the facebook developers step for IOS, followed…
snow
  • 162
  • 1
  • 13
12
votes
2 answers

react-native-fbsdk error: No resource found that matches the given name: attr 'android:keyboardNavigationCluster'

In my react-native project in android/app/build.gradle i have ... compileSdkVersion 26 buildToolsVersion "26.0.1" defaultConfig { applicationId "..." minSdkVersion 16 targetSdkVersion 26 versionCode 1 …
12
votes
1 answer

React Native Facebook Login using official fbsdk

I tried following the starter tutorial by setting up a new React Native Project for iOS. But the loginbutton doesn't seem to be working. Any help is appreciated. Here's the index.ios.js: import React, { Component } from 'react'; import { …
philoniare
  • 1,625
  • 1
  • 13
  • 20
9
votes
3 answers

Build error: FBSDKShareKit.h file not found after upgrading to Xcode 10

I'm building an app using react native that uses FBSDK (react-native-fbsdk). The whole thing worked without an issue, but after I update my Xcode from 9.4 to 10.0, I'm no longer able to build the project due to…
rabbit87
  • 3,165
  • 2
  • 20
  • 29
9
votes
4 answers

A valid Facebook app id must be set in the AndroidManifest.xml

I am trying to setup fbsdk on Android using react native and the fbsdk wrapper https://github.com/facebook/react-native-fbsdk. I have it working on iOS but I am stuck on Android. I followed all the steps according the github…
1
2 3
21 22