@@ -13,7 +13,7 @@ sidebar_label: Manual linking
1313
14142 . Right click on the Libraries folder and select ` Add files to "yourProjectName" ` .
1515
16- 3 . Add ` RNCAsyncStorage.xcodeproj ` (located at ` node_modules/@react-native-community /async-storage/ios ` ) to your project Libraries.
16+ 3 . Add ` RNCAsyncStorage.xcodeproj ` (located at ` node_modules/@react-native-async-storage /async-storage/ios ` ) to your project Libraries.
1717
18183 . Go to ` Build Phases -> Link Binary with Libraries ` and add: ` libRNCAsyncStorage.a ` .
1919
@@ -23,7 +23,7 @@ sidebar_label: Manual linking
23232 . Add this line to your ` Podfile ` just below the last pod (if you don't have one, you can create it by running ` pod init ` ):
2424
2525``` diff
26- + pod 'RNCAsyncStorage', :path => '../node_modules/@react-native-community /async-storage'
26+ + pod 'RNCAsyncStorage', :path => '../node_modules/@react-native-async-storage /async-storage'
2727```
2828
29293 . Run ` pod install `
@@ -35,7 +35,7 @@ sidebar_label: Manual linking
3535
36362 . Right click on the Libraries folder and select ` Add files to "yourProjectName" ` .
3737
38- 3 . Add ` RNCAsyncStorage.xcodeproj ` (located at ` node_modules/@react-native-community /async-storage/macos ` ) to your project Libraries.
38+ 3 . Add ` RNCAsyncStorage.xcodeproj ` (located at ` node_modules/@react-native-async-storage /async-storage/macos ` ) to your project Libraries.
3939
40404 . Go to ` Build Phases -> Link Binary with Libraries ` and add: ` libRNCAsyncStorage-macOS.a ` .
4141
@@ -47,15 +47,15 @@ rootProject.name = 'MyApp'
4747
4848include ':app'
4949
50- + include ':@react-native-community_async -storage'
51- + project(':@react-native-community_async -storage').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-community /async-storage/android')
50+ + include ':@react-native-async -storage'
51+ + project(':@react-native-async -storage').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-async-storage /async-storage/android')
5252 ```
5353
54542 . In ` android/app/build.gradle ` add to dependencies:
5555``` diff
5656dependencies {
5757 ...
58- + implementation project(':@react-native-community_async -storage')
58+ + implementation project(':@react-native-async -storage')
5959}
6060 ```
6161
@@ -86,7 +86,7 @@ protected List<ReactPackage> getPackages() {
86861 . Open your solution in Visual Studio.
8787
88882 . Right click Solution icon in Solution Explorer > Add > Existing Project.
89- Select ` node_modules\@react-native-community \async-storage\windows\ReactNativeAsyncStorage\ReactNativeAsyncStorage.vcxproj `
89+ Select ` node_modules\@react-native-async-storage \async-storage\windows\ReactNativeAsyncStorage\ReactNativeAsyncStorage.vcxproj `
9090
9191
9292#### Add a reference to ` ReactNativeAsyncStorage ` in your main application project.
0 commit comments