expo-libvlc-player 2.1.3 → 2.1.4
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 +4 -4
- package/android/build.gradle +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -163,9 +163,9 @@ The `LibVlcPlayerView` extends React Native `ViewProps` and implements the follo
|
|
|
163
163
|
|
|
164
164
|
```ts
|
|
165
165
|
{
|
|
166
|
-
audio
|
|
167
|
-
video
|
|
168
|
-
subtitle
|
|
166
|
+
audio?: number;
|
|
167
|
+
video?: number;
|
|
168
|
+
subtitle?: number;
|
|
169
169
|
}
|
|
170
170
|
```
|
|
171
171
|
|
|
@@ -175,7 +175,7 @@ The `LibVlcPlayerView` extends React Native `ViewProps` and implements the follo
|
|
|
175
175
|
{
|
|
176
176
|
source: string | number;
|
|
177
177
|
type: "audio" | "subtitle";
|
|
178
|
-
selected
|
|
178
|
+
selected?: boolean;
|
|
179
179
|
}
|
|
180
180
|
```
|
|
181
181
|
|
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.1.
|
|
4
|
+
version = "2.1.4"
|
|
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.1.
|
|
30
|
+
versionName "2.1.4"
|
|
31
31
|
consumerProguardFiles("proguard-rules.pro")
|
|
32
32
|
}
|
|
33
33
|
lintOptions {
|