expo-libmpv 0.3.9 → 0.3.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.
@@ -87,8 +87,8 @@ class LibmpvWrapper(private val applicationContext: Context) {
87
87
  }
88
88
 
89
89
  // Copy conf
90
- val mpvConfPath = "${mpvDir}/MPVLib.conf"
91
- applicationContext.assets.open("MPVLib.conf").use { mpvConfIn ->
90
+ val mpvConfPath = "${mpvDir}/mpv.conf"
91
+ applicationContext.assets.open("mpv.conf").use { mpvConfIn ->
92
92
  FileOutputStream(mpvConfPath).use { confOut ->
93
93
  mpvConfIn.copyTo(confOut)
94
94
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-libmpv",
3
- "version": "0.3.9",
3
+ "version": "0.3.10",
4
4
  "description": "A libmpv Fabric component for Android",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",