expo-libvlc-player 2.3.0 → 2.3.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 CHANGED
@@ -57,7 +57,7 @@ Run `npx pod-install` after installing the npm package.
57
57
 
58
58
  #### Local network privacy
59
59
 
60
- On iOS, the `MobileVLCKit` player seems to interact with the local network when playing media from external sources.
60
+ On iOS, the `VLCKit` player seems to interact with the local network when playing media from external sources.
61
61
 
62
62
  Starting in iOS 14, a clear message must be provided to the `NSLocalNetworkUsageDescription` key in the Info.plist file.
63
63
 
@@ -65,7 +65,7 @@ https://developer.apple.com/documentation/technotes/tn3179-understanding-local-n
65
65
 
66
66
  #### Audio playback issue
67
67
 
68
- On iOS, the `MobileVLCKit` player experiences a small audio delay when resuming or muting media playback.
68
+ On iOS, the `VLCKit` player experiences a small audio delay when resuming or muting media playback.
69
69
 
70
70
  This might be related to the internal clock used by the library core causing inaccurate position/time values.
71
71
 
@@ -243,8 +243,8 @@ The `LibVlcPlayerView` extends React Native `ViewProps` and implements the follo
243
243
 
244
244
  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:
245
245
 
246
- - `libvlcjni` for Android
247
- - `MobileVLCKit` for iOS
246
+ - `libvlcjni` for Android / Android TV
247
+ - `VLCKit` for iOS / Apple TV
248
248
 
249
249
  For official VLC products and support, please visit [videolan.org](https://www.videolan.org/).
250
250
 
@@ -1,7 +1,7 @@
1
1
  apply plugin: "com.android.library"
2
2
 
3
3
  group = "expo.modules.libvlcplayer"
4
- version = "2.3.0"
4
+ version = "2.3.1"
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.3.0"
30
+ versionName "2.3.1"
31
31
  consumerProguardFiles("proguard-rules.pro")
32
32
  }
33
33
  lintOptions {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-libvlc-player",
3
- "version": "2.3.0",
3
+ "version": "2.3.1",
4
4
  "description": "LibVLC Player for Expo",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",