$ npm install react-native-play-audio --save
$ react-native link react-native-play-audio
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-play-audio
and addRNPlayAudio.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNPlayAudio.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.RNPlayAudio.RNPlayAudioPackage;
to the imports at the top of the file - Add
new RNPlayAudioPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-play-audio' project(':react-native-play-audio').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-play-audio/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-play-audio')
import AudioPlayer from 'react-native-play-audio';
AudioPlayer.onEnd(() => {
console.log('on end');
});
const URL = 'http://sample.com/sample.mp3';
const callback = () => {
AudioPlayer.play();
AudioPlayer.getDuration((duration) => {
console.log(duration);
});
setInterval(() => {
AudioPlayer.getCurrentTime((currentTime) => {
console.log(currentTime);
});
}, 1000);
}
AudioPlayer.prepare(URL, callback);
AudioPlayer.prepareWithFile('sample', 'mp3', callback);
// AudioPlayer.stop();
// AudioPlayer.pause();
// AudioPlayer.setTime(50.5);
#### What is new in version 0.2
- Added ability to load local files
- Fixed main_queue warning
- Increased react-native version in package.json
- Updated this README.md file