expo-libvlc-player 2.0.10 → 2.0.12
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 +2 -2
- package/android/build.gradle +3 -3
- package/ios/ExpoLibVlcPlayer.podspec +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -211,8 +211,8 @@ The `LibVlcPlayerView` extends React Native `ViewProps` and implements the follo
|
|
|
211
211
|
|
|
212
212
|
This project is not affiliated with, endorsed by, or officially supported by VideoLAN. The VLC icon is trademark of VideoLAN and is used here solely to indicate compatibility with the following **LibVLC** bindings:
|
|
213
213
|
|
|
214
|
-
- `libvlcjni
|
|
215
|
-
- `MobileVLCKit
|
|
214
|
+
- `libvlcjni` for Android
|
|
215
|
+
- `MobileVLCKit` for iOS
|
|
216
216
|
|
|
217
217
|
For official VLC products and support, please visit [videolan.org](https://www.videolan.org/).
|
|
218
218
|
|
package/android/build.gradle
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
apply plugin: "com.android.library"
|
|
2
2
|
|
|
3
3
|
group = "expo.modules.libvlcplayer"
|
|
4
|
-
version = "2.0.
|
|
4
|
+
version = "2.0.12"
|
|
5
5
|
|
|
6
6
|
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
7
7
|
apply from: expoModulesCorePlugin
|
|
@@ -27,7 +27,7 @@ android {
|
|
|
27
27
|
namespace "expo.modules.libvlcplayer"
|
|
28
28
|
defaultConfig {
|
|
29
29
|
versionCode 1
|
|
30
|
-
versionName "2.0.
|
|
30
|
+
versionName "2.0.12"
|
|
31
31
|
consumerProguardFiles("proguard-rules.pro")
|
|
32
32
|
}
|
|
33
33
|
lintOptions {
|
|
@@ -41,5 +41,5 @@ repositories {
|
|
|
41
41
|
|
|
42
42
|
dependencies {
|
|
43
43
|
implementation "com.facebook.react:react-native:+"
|
|
44
|
-
implementation "org.videolan.android:libvlc-all:3.6.
|
|
44
|
+
implementation "org.videolan.android:libvlc-all:3.6.3"
|
|
45
45
|
}
|