react-native-mapmagic-gl
Version:
Mapmagic GL is a react-native interactive maps library
76 lines (52 loc) • 2.46 kB
Markdown
# iOS Installation
## Using CocoaPods
### Add Native Mapbox SDK Framework
To install with CocoaPods, add the following to your `Podfile`:
```
# Flexbox Layout Manager Used By React Natve
pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga/Yoga.podspec'
# React Native
pod 'React', path: '../node_modules/react-native', subspecs: [
# Comment out any unneeded subspecs to reduce bundle size.
'Core',
'DevSupport',
'RCTActionSheet',
'RCTAnimation',
'RCTBlob',
'RCTCameraRoll',
'RCTGeolocation',
'RCTImage',
'RCTNetwork',
'RCTPushNotification',
'RCTSettings',
'RCTTest',
'RCTText',
'RCTVibration',
'RCTWebSocket',
'RCTLinkingIOS'
]
# Mapbox
pod 'react-native-mapbox-gl', :path => '../node_modules/react-native-mapmagic-gl'
```
Then run `pod install` and rebuild your project.
### Enabled MGLMapboxMetricsEnabledSettingShownInApp
In the `Info` of your application target Add Key `MGLMapboxMetricsEnabledSettingShownInApp` -> `YES`
## Manual Installation
### Add Native Mapbox SDK Framework
Select your project in the `Project navigator`. Click `General` tab then add `node_modules/react-native-mapmagic-gl/ios/Mapbox.framework` to `Embedded Binaries`. :collision: **Important, make sure you're adding it to general -> `Embedded Binaries` :collision:**
Click 'Add other' to open the file browser and select Mapbox.framework.
Select the 'Copy items if needed' checkbox.

### Add React Native Mapbox SDK Files
In the Xcode's `Project navigator`, right click on the `Libraries` folder ➜ `Add Files to <...>`. Add `node_modules/react-native-mapmagic-gl/ios/RCTMGL.xcodeproj`.
Then in Xcode navigate to `Build Phases` click on it and you should see `Link Binary with Libraries`, we need to add `libRCTMGL.a`.
### Add Framework Header Search Paths
In the `Build Settings` of your application target search for `FRAMEWORK_SEARCH_PATHS`. Add `$(PROJECT_DIR)/../node_modules/react-native-mapmagic-gl/ios` non-recursive to your `Framework Search Paths`.
**Important** If their is a select input under `Debug` line, choose `Any iOS SDK`.
### Add Run Script
In the `Build Phases` tab, click the plus sign and then `New Run Script Phase`

Open the newly added `Run Script` and paste:
```bash
"${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}/Mapbox.framework/strip-frameworks.sh"
```