Last active
August 8, 2017 06:18
-
-
Save gardner/aac8c149ded65a9be61997a7aabd6c1c to your computer and use it in GitHub Desktop.
Create React Native App with Maps
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
npm install -g react-native-cli && \ | |
react-native init MDemo && cd MDemo && \ | |
git init && git add . && git commit -am "Initial commit after react-native init" && \ | |
npm install --save react-native-maps && react-native link react-native-maps && \ | |
git commit -am "Added react-native-maps and then ran: react-native link react-native-maps" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment