chore(android): bump kotlin version (#3334)

* chore(android): update gradle files

* docs: update android installation section
This commit is contained in:
Krzysztof Moch
2023-11-08 07:41:17 +01:00
committed by GitHub
parent 722ae3477a
commit 6df0f7d1c0
3 changed files with 35 additions and 13 deletions

View File

@@ -92,6 +92,18 @@ include ':react-native-video'
project(':react-native-video').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-video/android')
```
`android/build.gradle`
From version >= 6.0.0, your application needs to have kotlin version >= 1.7.0
```:
buildscript {
...
ext.kotlinVersion = '1.7.0'
...
}
```
`android/app/build.gradle`
From version >= 5.0.0, you have to apply these changes: