Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,35 @@ yarn add cloudinary-react-native

# Using pnpm
pnpm add cloudinary-react-native

```
### For Video Player functionality
The SDK supports both `expo-av` and `expo-video` libraries. The appropriate library will be automatically detected and used:

**For Expo SDK 50-51 (expo-av):**
```bash
npm install expo-av
```
Or
```bash
yarn add expo-av
```
Or
```bash
pnpm add expo-av
```

**For Expo SDK 52+ (expo-video - recommended):**
```bash
npm install expo-video
```
Or
```bash
yarn add expo-av
```
Or
```bash
pnpm add expo-av
```

**Note:** `expo-av` is deprecated in SDK 52 and removed in SDK 53. For newer Expo versions, use `expo-video`.

Expand All @@ -65,6 +81,10 @@ Or
```bash
yarn add @expo/vector-icons expo-font
```
Or
```bash
pnpm add @expo/vector-icons expo-font
```

## Usage
### Setup
Expand Down