Skip to content

Commit

Permalink
docs: Ensure the Android class name is correct in the README (#24)
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
thedevdavid authored and matt-oakes committed Apr 15, 2019
1 parent b77d3e1 commit f7ce743
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,17 +61,17 @@ dependencies {
On top, where imports are:

```java
import com.reactnativecommunity.geolocation.RNCGeolocationPackage;
import com.reactnativecommunity.geolocation.GeolocationPackage;
```

Add the `RNCGeolocationPackage` class to your list of exported packages.
Add the `GeolocationPackage` class to your list of exported packages.

```java
@Override
protected List<ReactPackage> getPackages() {
return Arrays.asList(
new MainReactPackage(),
new RNCGeolocationPackage()
new GeolocationPackage()
);
}
```
Expand Down

0 comments on commit f7ce743

Please sign in to comment.