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
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,31 @@ Follow these steps to add the library to your Android project:
url 'https://mvn.jwplayer.com/content/repositories/releases/'
}
```
If you are using EXPO, then an alternative way to the above
so that you don't have to re-add it to android/build.grade every time you do:
```npx expo prebuild --clean``

Install expo-build-properties plugin:
```npx expo install expo-build-properties```

and then add to app.json
```
"plugins": [
... (your other plugins go here)
[
"expo-build-properties",
{
"android": {
"extraMavenRepos": [
{
"url": "https://mvn.jwplayer.com/content/repositories/releases/"
}
]
}
}
]
],
```

For more details and guidance regarding configuration and requirements, see the [JWP Android SDK documentation](https://docs.jwplayer.com/players/docs/android-overview#requirements).

Expand Down