Skip to content

Latest commit

 

History

History
31 lines (18 loc) · 513 Bytes

81_ios.md

File metadata and controls

31 lines (18 loc) · 513 Bytes

8.1 iOS

Cocoapods with local path

Requirement : [CocoaPods](https://cocoapods.org/) 

After pod **version > 1.0**, you need to identify the target. Create 'Podfile' in project root folder :
```

target 'MyiOSApp' do pod 'React', :path => '../../AwesomeProject/node_modules/react-native', :subspecs => [ 'Core', 'RCTImage', 'RCTNetwork', 'RCTText', 'RCTWebSocket', ] end ```

then pod install