README: prevent blocking outside music

This commit is contained in:
skleest 2016-04-28 21:40:46 -07:00
parent b17e3add97
commit c2272bc8d6

View File

@ -13,6 +13,20 @@ Run `npm install react-native-video --save`
Install [rnpm](https://github.com/rnpm/rnpm) and run `rnpm link react-native-video` Install [rnpm](https://github.com/rnpm/rnpm) and run `rnpm link react-native-video`
If you would like to allow other apps to play music over your video component, add:
**AppDelegate.m**
```
#import <AVFoundation/AVFoundation.h> // import
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
...
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryAmbient error:nil]; // allow
...
}
```
#### Android #### Android
First, copy your video file to `android/app/src/main/res/raw/`, then First, copy your video file to `android/app/src/main/res/raw/`, then