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 +14 -5
- package/android/build.gradle +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,13 +1,22 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
|
|
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
|
-
|
|
9
|
-
|
|
10
|
-
|
|
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](
|
|
110
|
+
See the [Example App](example/components/PlayerView.tsx) for additional usage.
|
|
102
111
|
|
|
103
112
|
### Player methods
|
|
104
113
|
|
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 = "1.0.
|
|
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.
|
|
30
|
+
versionName "1.0.2"
|
|
31
31
|
consumerProguardFiles("proguard-rules.pro")
|
|
32
32
|
}
|
|
33
33
|
lintOptions {
|