Posts

Showing posts from March, 2021

Facebook Login In React Native | Expo

Image
React native is a hybrid mobile app development platform that enables you to use your application in android, ios as well as web. so code once and use it anywhere and In this article, we will configure how to make Facebook authentication in your react native application using Facebook Graph API with Expo . " Expo is a framework and a platform for universal React applications. It is a set of tools and services built around React Native and native platforms that help you develop, build, deploy, and quickly iterate on iOS, Android, and web apps from the same JavaScript/TypeScript codebase." Requirements Expo account Facebook developer account Your Expo project setup Step 1: Create an expo project Create an expo project and install the expo-facebook library by following these command below:- expo init Login_Social cd Login_Social/ expo install expo-facebook expo start Step 2 Get Facebook kay hash - To get this you have to sign in to your expo account on you...

Solution for "Developer Error" In React Native Google Authentication

Image
  " Developer Error " In React Native Google Authentication So in this post, I am gonna show you how you will figure out the developer error in react native google authentication like this is a common error while you start learning about google authentication so make sure anything you are doing of installing any type of dependencies must follow the whole documentation properly because this is the major issue while start learning new technology or something other you are doing is your project so let's start about this topic. Dependencies For RN >= 0.60 please use version installed from @react-native-google-signin/google-signin yarn add @react-native-google-signin/google-signin For RN <= 0.59 use version 2 installed from react-native-google-signin yarn add react-native-google-signin Make sure you properly installed this dependency in your project follow this documentation link below https://github.com/react-native-google-signin/google-signin So this error is shown to ...