expo-libvlc-player 3.4.17 → 3.4.18
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/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 = '3.4.
|
|
4
|
+
version = '3.4.18'
|
|
5
5
|
|
|
6
6
|
def expoModulesCorePlugin = new File(project(':expo-modules-core').projectDir.absolutePath, 'ExpoModulesCorePlugin.gradle')
|
|
7
7
|
apply from: expoModulesCorePlugin
|
|
@@ -25,7 +25,7 @@ android {
|
|
|
25
25
|
targetSdkVersion safeExtGet('targetSdkVersion', 35)
|
|
26
26
|
|
|
27
27
|
versionCode 1
|
|
28
|
-
versionName '3.4.
|
|
28
|
+
versionName '3.4.18'
|
|
29
29
|
|
|
30
30
|
consumerProguardFiles('proguard-rules.pro')
|
|
31
31
|
}
|
|
@@ -373,14 +373,12 @@ class LibVlcPlayerView(
|
|
|
373
373
|
|
|
374
374
|
var source: String? = null
|
|
375
375
|
set(value) {
|
|
376
|
-
val old = field
|
|
377
376
|
field = value
|
|
378
377
|
shouldCreate = true
|
|
379
378
|
}
|
|
380
379
|
|
|
381
380
|
var options: MutableList<String> = mutableListOf()
|
|
382
381
|
set(value) {
|
|
383
|
-
val old = field
|
|
384
382
|
field = value
|
|
385
383
|
shouldCreate = true
|
|
386
384
|
}
|