Skip to content

Commit 2726c59

Browse files
piotr pietruszewskipi0trpietruszewski
authored andcommitted
docs: fixed typo in package name
1 parent b2902aa commit 2726c59

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ If you're using React Native v0.60 or above, the library will be linked automati
4646
#### Android: Automatic linking with React Native v0.59 and below
4747

4848
```
49-
$ react-native link intercom-react-native
49+
$ react-native link @intercom/intercom-react-native
5050
```
5151

5252
#### Android: Manual linking with React Native v0.59 and below
@@ -69,7 +69,7 @@ implementation project(':intercomreactnative')
6969
- Add below lines to `MainApplication.java` inside `onCreate` method, replacing `apiKey` and `appId` which can be found in your [workspace settings](https://app.intercom.com/a/apps/_/settings/android).
7070

7171
```java
72-
import hideIntercom.IntercomModule; // <-- Add this line
72+
import com.intercom.reactnative.IntercomModule; // <-- Add this line
7373

7474
// ...
7575

@@ -170,7 +170,7 @@ package com.example.app;
170170

171171
import com.google.firebase.messaging.FirebaseMessagingService;
172172
import com.google.firebase.messaging.RemoteMessage;
173-
import hideIntercom.IntercomModule;
173+
import com.intercom.reactnative.IntercomModule;
174174

175175
public class MainNotificationService extends FirebaseMessagingService {
176176

@@ -208,7 +208,7 @@ public class MainNotificationService extends FirebaseMessagingService {
208208
</service>
209209

210210
<receiver
211-
android:name="hideIntercom.RNIntercomPushBroadcastReceiver"
211+
android:name="com.intercom.reactnative.RNIntercomPushBroadcastReceiver"
212212
tools:replace="android:exported"
213213
android:exported="true"/>
214214
<!-- END: Add this-->

0 commit comments

Comments
 (0)