diff --git a/CHANGELOG.md b/CHANGELOG.md index b1213f3f38..0a956d2a23 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ - Sample: Add react-native-video controls support [#2852](https://github.com/react-native-video/react-native-video/pull/2852) - Android: Switch Google's maven repository to default `google()` [#2860](https://github.com/react-native-video/react-native-video/pull/2860) - Android: Implement focusable prop so the video view can toggle whether it is focusable for non-touch devices [#2819](https://github.com/react-native-video/react-native-video/issues/2819) +- Android: fix linter warning [#2891] (https://github.com/react-native-video/react-native-video/pull/2891) - Fix iOS RCTSwiftLog naming collision [#2868](https://github.com/react-native-video/react-native-video/issues/2868) - Added "homepage" to package.json [#2882](https://github.com/react-native-video/react-native-video/pull/2882) diff --git a/android/build.gradle b/android/build.gradle index d465c47b80..ebacc8e95d 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -40,11 +40,10 @@ dependencies { implementation "androidx.annotation:annotation:1.1.0" implementation "androidx.core:core:1.1.0" implementation "androidx.media:media:1.1.0" - implementation 'androidx.activity:activity:1.4.0' + implementation "androidx.activity:activity:1.4.0" implementation('com.google.android.exoplayer:extension-okhttp:2.18.1') { exclude group: 'com.squareup.okhttp3', module: 'okhttp' } - implementation 'com.squareup.okhttp3:okhttp:${OKHTTP_VERSION}' - + implementation "com.squareup.okhttp3:okhttp:" + '$OKHTTP_VERSION' }