yutin-expo-av
v3.0.3
Published
Expo universal module for Audio and Video playback
Downloads
6
Maintainers
Readme
expo-av
Expo universal module for Audio and Video playback
API documentation
Installation
This package is pre-installed in managed Expo projects. You may skip the rest of the installation guide if this applies to you.
For bare React Native projects, you must ensure that you have installed and configured the @unimodules/core
package before continuing.
Add the package to your npm dependencies
npm install expo-av
Configure for iOS
Add the dependency to your Podfile
and then run pod install
.
pod 'EXAV', path: '../node_modules/expo-av/ios'
Configure for Android
- Append the following lines to
android/settings.gradle
:
include ':expo-av'
project(':expo-av').projectDir = new File(rootProject.projectDir, '../node_modules/expo-av/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:
api project(':expo-av')
- In
MainApplication.java
, import the package and add it to theReactModuleRegistryProvider
list:
import expo.modules.av.AVPackage;
private final ReactModuleRegistryProvider mModuleRegistryProvider = new ReactModuleRegistryProvider(Arrays.<Package>asList(
// Your other packages will be here
new AVPackage()
), Arrays.<SingletonModule>asList());
Contributing
Contributions are very welcome! Please refer to guidelines described in the contributing guide.