Add to package.json dependencies line
"react-native-metronome": "git://github.com/kotlyar562/react-native-metronome.git"
$ react-native link react-native-metronome
- In XCode, in the project navigator, right click
Libraries➜Add Files to [your project's name] - Go to
node_modules➜react-native-metronomeand addRNMetronome.xcodeproj - In XCode, in the project navigator, select your project. Add
libRNMetronome.ato your project'sBuild Phases➜Link Binary With Libraries - Run your project (
Cmd+R)<
- Open up
android/app/src/main/java/[...]/MainApplication.java
- Add
import com.metronome.RNMetronomePackage;to the imports at the top of the file - Add
new RNMetronomePackage()to the list returned by thegetPackages()method
- Append the following lines to
android/settings.gradle:include ':react-native-metronome' project(':react-native-metronome').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-metronome/android') - Insert the following lines inside the dependencies block in
android/app/build.gradle:compile project(':react-native-metronome') - Important! Copy sounds to folder
android/app/src/main/java/res/raw
import Metronome from "react-native-metronome";
...
Metronome.play(80); //play with 80 bpm
Metronome.nextSound(); //play next sound
Metronome.stop(); // stop playing
Metronome.isPlay(status => {
console.log(status);
})
...If you change bpm, call play() again.
Show example for more info