expo-video 1.1.9 → 1.1.10

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/CHANGELOG.md CHANGED
@@ -10,6 +10,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 1.1.10 — 2024-05-29
14
+
15
+ ### 💡 Others
16
+
17
+ - [Android] Improve HLS compatibility. ([#28997](https://github.com/expo/expo/pull/28997) by [@behenate](https://github.com/behenate))
18
+
13
19
  ## 1.1.9 — 2024-05-13
14
20
 
15
21
  ### 🎉 New features
@@ -1,7 +1,7 @@
1
1
  apply plugin: 'com.android.library'
2
2
 
3
3
  group = 'host.exp.exponent'
4
- version = '1.1.9'
4
+ version = '1.1.10'
5
5
 
6
6
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
7
7
  apply from: expoModulesCorePlugin
@@ -14,7 +14,7 @@ android {
14
14
  namespace "expo.modules.video"
15
15
  defaultConfig {
16
16
  versionCode 1
17
- versionName '1.1.9'
17
+ versionName '1.1.10'
18
18
  }
19
19
  }
20
20
 
@@ -25,6 +25,7 @@ dependencies {
25
25
  implementation "androidx.media3:media3-session:${androidxMedia3Version}"
26
26
  implementation "androidx.media3:media3-exoplayer:${androidxMedia3Version}"
27
27
  implementation "androidx.media3:media3-exoplayer-dash:${androidxMedia3Version}"
28
+ implementation "androidx.media3:media3-exoplayer-hls:${androidxMedia3Version}"
28
29
  implementation "androidx.media3:media3-ui:${androidxMedia3Version}"
29
30
 
30
31
  def fragment_version = "1.6.2"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "expo-video",
3
3
  "title": "Expo Video",
4
- "version": "1.1.9",
4
+ "version": "1.1.10",
5
5
  "description": "A cross-platform, performant video component for React Native and Expo with Web support",
6
6
  "main": "build/index.js",
7
7
  "types": "build/index.d.ts",
@@ -36,5 +36,5 @@
36
36
  "peerDependencies": {
37
37
  "expo": "*"
38
38
  },
39
- "gitHead": "baf505bf4d0db4742e0eb1083f07a1b8b4a1ab1c"
39
+ "gitHead": "979e9f1fc3cfa9c827700dcf99992e671cfdf63e"
40
40
  }