You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-9Lines changed: 12 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,9 @@ Cookie Manager for React Native
3
3
4
4
This module was ported from [joeferraro/react-native-cookies](https://github.com/joeferraro/react-native-cookies). This would not exist without the work of the original author, [Joe Ferraro](https://github.com/joeferraro).
5
5
6
+
## Important notices & Breaking Changes
7
+
- v1.1.1 >= will be published to `@react-native-community/cookies`. `@react-native-community/react-native-cookies` is now deprecated as of v1.1.1.
8
+
6
9
## Maintainers
7
10
-[Jason Safaiyeh](https://github.com/safaiyeh) ([Twitter @safaiyeh](https://twitter.com/safaiyeh)) from [Sumo Logic](https://www.sumologic.com)
8
11
@@ -15,7 +18,7 @@ Currently lacking support for Windows, Web, and Expo. Support for these platform
react-native link @react-native-community/react-native-cookies
30
+
react-native link @react-native-community/cookies
28
31
```
29
32
30
33
### Manual
@@ -34,29 +37,29 @@ If automatic linking does not work, you can manually link this library by follow
34
37
#### iOS
35
38
36
39
1. Open your project in Xcode, right click on `Libraries` and click `Add
37
-
Files to "Your Project Name"` Look under `node_modules/@react-native-community/react-native-cookies/ios` and add `RNCookieManagerIOS.xcodeproj`.
40
+
Files to "Your Project Name"` Look under `node_modules/@react-native-community/cookies/ios` and add `RNCookieManagerIOS.xcodeproj`.
38
41
2. Add `libRNCookieManagerIOS.a` to `Build Phases -> Link Binary With Libraries.
39
42
3. Clean and rebuild your project
40
43
41
44
#### Android
42
45
43
-
Run `react-native link` to link the react-native-cookies library.
46
+
Run `react-native link` to link the cookies library.
44
47
45
48
Or if you have trouble, make the following additions to the given files manually:
46
49
47
50
**android/settings.gradle**
48
51
49
52
```gradle
50
-
include ':@react-native-community_react-native-cookies'
51
-
project(':@react-native-community_react-native-cookies').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-community/react-native-cookies/android')
53
+
include ':@react-native-community_cookies'
54
+
project(':@react-native-community_cookies').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-community/cookies/android')
0 commit comments