expo-libvlc-player 1.0.1 → 1.0.2

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
@@ -1,13 +1,22 @@
1
1
  <p align="center">
2
- <img alt="VLC icon" src="https://images.videolan.org/images/VLC-IconSmall.png">
2
+ <img alt="VLC icon" src="https://images.videolan.org/images/VLC-IconSmall.png">
3
3
  </p>
4
4
 
5
5
  <h1 align="center">LibVLC Player for Expo</h1>
6
6
 
7
7
  <p align="center">
8
- <a href="https://www.npmjs.com/package/expo-libvlc-player" target="_blank">
9
- <img alt="npm version" src="https://img.shields.io/npm/v/expo-libvlc-player">
10
- </a>
8
+ <a href="https://www.npmjs.com/package/expo-libvlc-player" target="_blank">
9
+ <img alt="npm version" src="https://img.shields.io/npm/v/expo-libvlc-player">
10
+ </a>
11
+ </p>
12
+
13
+ <p align="center">
14
+ <img style="height: 600px; margin: 0 8px;" alt="Android example" src="example/assets/android.png">
15
+ <img style="height: 600px; margin: 0 8px;" alt="iOS example" src="example/assets/ios.png">
16
+ </p>
17
+
18
+ <p align="center">
19
+ <i>Screenshots taken from the <a href="example/components/PlayerView.tsx">Example App</a> on Android and iOS</i>
11
20
  </p>
12
21
 
13
22
  ### Supported versions
@@ -98,7 +107,7 @@ return (
98
107
  );
99
108
  ```
100
109
 
101
- See the [Example App](<example/app/(tabs)/index.tsx>) for additional usage.
110
+ See the [Example App](example/components/PlayerView.tsx) for additional usage.
102
111
 
103
112
  ### Player methods
104
113
 
@@ -1,7 +1,7 @@
1
1
  apply plugin: "com.android.library"
2
2
 
3
3
  group = "expo.modules.libvlcplayer"
4
- version = "1.0.1"
4
+ version = "1.0.2"
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 "1.0.1"
30
+ versionName "1.0.2"
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": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "LibVLC Player for Expo",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",