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
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
-
# rn-calendar-manager
1
+
# @shoutem/react-native-calendar-manager
2
2
3
3
*Note*
4
-
We renamed the package from `react-native-calendar-manager` to `rn-calendar-manager` because the name was already taken on npm before we published.
4
+
We renamed the package from `react-native-calendar-manager` to `@shoutem/react-native-calendar-manager` because the name was already taken on npm before we published.
5
5
6
6
A calendar manager for React Native. Exposes `addEvent` method which can save an event to an Android or iOS device's native calendar app.
7
7
@@ -12,7 +12,7 @@ A calendar manager for React Native. Exposes `addEvent` method which can save an
12
12
13
13
## Plugin installation
14
14
15
-
Run `npm install --save rn-calendar-manager`
15
+
Run `npm install --save @shoutem/react-native-calendar-manager`
16
16
17
17
### Linking
18
18
@@ -25,7 +25,7 @@ Otherwise, check the manual linking section.
25
25
#### iOS
26
26
27
27
1. Open your project in Xcode, right click on `Libraries` and click `Add
28
-
Files to "Your Project Name"` Look under `node_modules/rn-calendar-manager` and add `CalendarManager.xcodeproj`.
28
+
Files to "Your Project Name"` Look under `node_modules/@shoutem/react-native-calendar-manager` and add `CalendarManager.xcodeproj`.
29
29
2. Add `libCalendarManager.a` to `Build Phases -> Link Binary With Libraries`
30
30
3. Click on `CalendarManager.xcodeproj` in `Libraries` and go the `Build
31
31
Settings` tab. Double click the text to the right of `Header Search
@@ -41,8 +41,8 @@ Otherwise, check the manual linking section.
41
41
```
42
42
#!groovy
43
43
...
44
-
include ':rn-calendar-manager'
45
-
project(':rn-calendar-manager').projectDir = new File(rootProject.projectDir, '../node_modules/rn-calendar-manager/android')
44
+
include ':@shoutem/react-native-calendar-manager'
45
+
project(':@shoutem/react-native-calendar-manager').projectDir = new File(rootProject.projectDir, '../node_modules/@shoutem/react-native-calendar-manager/android')
46
46
47
47
```
48
48
@@ -51,7 +51,7 @@ Otherwise, check the manual linking section.
0 commit comments