Skip to content

Commit

Permalink
Update installation.md
Browse files Browse the repository at this point in the history
Fix issue react-native-maps#684 (blank white map)
  • Loading branch information
nicovak authored Dec 1, 2016
1 parent f1b478b commit 5f67b7c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,16 @@ You have to link dependencies with rnpm and re-run the build:
1. `react-native run-ios`

### On Android:

1. Be sure to have `new MapsPackage()` like so, in your `MainApplication.java`:
  ```
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new MapsPackage()
);
}
  ```
1. Set this Stylesheet in your map component
```
...
Expand Down

0 comments on commit 5f67b7c

Please sign in to comment.