Skip to content

Commit b7b2a42

Browse files
committed
fix: Fixed failing to find headers when linked with Pods.
If you've linked using react-native link, you will have to rerun the command. If you've linked manually, find your Podfile, and make the following changes: ```diff - pod 'react-native-async-storage', :path => '../node_modules/@react-native-community/async-storage' + pod 'RNCAsyncStorage', :path => '../node_modules/@react-native-community/async-storage' ```
1 parent 42fec96 commit b7b2a42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

react-native-async-storage.podspec renamed to RNCAsyncStorage.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ require 'json'
33
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
44

55
Pod::Spec.new do |s|
6-
s.name = "react-native-async-storage"
6+
s.name = "RNCAsyncStorage"
77
s.version = package['version']
88
s.summary = package['description']
99
s.license = package['license']

0 commit comments

Comments
 (0)