Skip to content

Instantly share code, notes, and snippets.

@alfonsodev
Created February 3, 2016 18:08
Show Gist options
  • Select an option

  • Save alfonsodev/7f119639e747cca07912 to your computer and use it in GitHub Desktop.

Select an option

Save alfonsodev/7f119639e747cca07912 to your computer and use it in GitHub Desktop.
React-native read bundle dir
var RNFS = require('react-native-fs');
// Read theRNFS.MainBundlePath song and playit
RNFS
.readDir(RNFS.MainBundlePath)
.then((result) => {
AudioPlayer.playWithUrl(result[0].path)
console.log('Audio should play');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment