## Current behavior <!-- Describe the issue. --> ``` [!] Unable to find a specification for `React-Core` depended upon by `RNCAsyncStorage` ``` ## Expected behavior <!-- Describe what the desired behavior would be. --> Run `pod install` successfully ## Repro steps ``` 1. react native cli init using latest RN 2. pod install async-storage ``` <!-- Please provide us steps (in points) how we can reproduce the issue. --> ## Environment - **Async Storage version**: 1.12.1<!-- @react-native-community/async-storage version set in package.json --> - **React-Native version**:0.63.3 <!-- React Native version set in package.json --> - **Platform tested**: IOS<!-- iOS / Android --> - **Logs/Error that are relevant**: <!-- link to your CI logs or semantic-release logs --> Current workaround from https://github.com/joltup/rn-fetch-blob/issues/402#issuecomment-513077800 Use `patch-package` to apply a quick patch. Change `node_modules/@react-native-community/async-storage/RNCAsyncStorage.podspec`: ```diff + s.dependency 'React/Core' - s.dependency 'React-Core' ```