Skip to content

Commit

Permalink
Merge pull request #137 from ramprakashreddy/master
Browse files Browse the repository at this point in the history
Docs Updated
  • Loading branch information
Corné Dorrestijn committed Oct 18, 2021
2 parents d68d293 + 1652aa5 commit f769c3b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Expand Up @@ -44,6 +44,22 @@ For React Native < 0.60
```
react-native link react-native-video
react-native link react-native-vector-icons
```
## Important Note
To avoid **Build Error** "Could not find com.yqritc:android-scalablevideoview:1.0.4."
Add jcenter() to your build.gradle file present at the android folder (add it under **allprojects**).
after the adding the changes, code would look like

For more info please refer to [LINK](https://stackoverflow.com/questions/68835157/error-when-trying-to-run-my-react-native-app-on-android)
```
allprojects {
repositories {
mavenCentral()
mavenLocal()
jcenter()
}
}
```

## Example
Expand Down

0 comments on commit f769c3b

Please sign in to comment.