Created
February 3, 2016 18:08
-
-
Save alfonsodev/7f119639e747cca07912 to your computer and use it in GitHub Desktop.
React-native read bundle dir
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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