Version 0.9.0 is not installable from yarn
This is my package.json
{
[...]
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"dependencies": {
[...]
"react-native-fbsdk": "0.9.0"
[...]
}
}
running yarn install this is the result:
Couldn't find any versions for "react-native-fbsdk" that matches "0.9.0"
Expected to install the latest release
React Native Environment Info:
System:
OS: macOS 10.14.4
CPU: (4) x64 Intel(R) Core(TM) i5-7500 CPU @ 3.40GHz
Memory: 26.07 MB / 24.00 GB
Shell: 3.2.57 - /bin/bash
Binaries:
Node: 8.14.0 - /usr/local/opt/node@8/bin/node
Yarn: 1.12.3 - /usr/local/bin/yarn
npm: 6.4.1 - /usr/local/opt/node@8/bin/npm
Watchman: 4.9.1 - /usr/local/bin/watchman
SDKs:
iOS SDK:
Platforms: iOS 12.2, macOS 10.14, tvOS 12.2, watchOS 5.2
Android SDK:
API Levels: 23, 25, 26, 27
Build Tools: 27.0.3, 28.0.2, 28.0.3
System Images: android-27 | Google Play Intel x86 Atom
IDEs:
Android Studio: 3.3 AI-182.5107.16.33.5199772
Xcode: 10.2/10E125 - /usr/bin/xcodebuild
npmPackages:
react: 16.6.3 => 16.6.3
react-native: 0.57.8 => 0.57.8
npmGlobalPackages:
create-react-native-app: 1.0.0
react-native-cli: 2.0.1
react-native-git-upgrade: 0.2.7
react-native-list-popover: 1.0.5
C'mon guys this is ridiculous! This version was released nearly half a year ago!!
Just as a quick workaround until this gets fixed, you can install the latest version by updating your package.json as follows:
{
...
"dependencies": {
"react-native-fbsdk": "https://github.com/facebook/react-native-fbsdk.git",
}
...
}
it's broken on Android according to https://github.com/facebook/react-native-fbsdk/issues/437#issuecomment-449538536