@wowmaking/react-native-megacool
v0.9.4
Published
React Native Megacool SDK bridge
Downloads
5
Readme
react-native-megacool
React Native Megacool SDK bridge
Getting started
$ npm install @wowmaking/react-native-megacool --save
Mostly automatic installation
$ react-native link @wowmaking/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
➜@wowmaking
➜react-native-megacool
and addMegacool.xcodeproj
- In XCode, in the project navigator, select your project. Add
libMegacool.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)
Android
- Open up
android/app/src/main/java/[...]/MainApplication.java
- Add
import net.wowmaking.MegacoolPackage;
to the imports at the top of the file - Add
new MegacoolPackage()
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/@wowmaking/react-native-megacool/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:implementation project(':react-native-megacool')
Usage
import { Megacool } from '@wowmaking/react-native-megacool';
Megacool.start('CONFIG_KEY');
Megacool.startRecording();
setTimeout(() => {
Megacool.stopRecording();
Megacool.presentShare();
}, 1000);
For more, read the API Reference or check out the ExampleApp.