react-native-spalla-player 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,6 +8,21 @@ Spalla SDK for RN
|
|
|
8
8
|
npm install react-native-spalla-player
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
+
On Android, also add the THEOplayer repository to the list of repositories
|
|
12
|
+
|
|
13
|
+
```sh
|
|
14
|
+
maven { url 'https://maven.theoplayer.com/releases' }
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
For example:
|
|
18
|
+
```sh
|
|
19
|
+
repositories {
|
|
20
|
+
mavenCentral()
|
|
21
|
+
google()
|
|
22
|
+
maven { url 'https://maven.theoplayer.com/releases' }
|
|
23
|
+
}
|
|
24
|
+
```
|
|
25
|
+
|
|
11
26
|
## Usage
|
|
12
27
|
|
|
13
28
|
```js
|