react-native-megacool
v0.9.0
Published
## Getting started
Downloads
6
Readme
react-native-megacool
Getting started
$ npm install react-native-megacool --save
Mostly automatic installation
$ react-native link react-native-megacool
Manual installation
iOS
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-megacool
and addRNMegacool.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNMegacool.a
to your project'sBuild Phases
➜Link Binary With Libraries
- In XCode, in the project navigator, right click
Frameworks
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-megacool
➜ios
and addMegacool.framework
- In XCode, go to
Build Settings
, search forFramework Search Paths
and add$(PROJECT_DIR)/../node_modules/react-native-megacool/ios
- Run your project (
Cmd+R
)<
Android
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.reactlibrary.RNMegacoolPackage;
to the imports at the top of the file - Add
new RNMegacoolPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-megacool' project(':react-native-megacool').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-megacool/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-megacool')
- Insert the following lines in
android/app/build.gradle
:repositories { maven { url 'https://maven.megacool.co/releases' } }
Usage
import { Megacool, MegacoolPreview } from 'react-native-megacool';