expo-libmpv 0.1.2 → 0.2.0

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.
@@ -0,0 +1,11 @@
1
+ ### hwdec: try to use hardware decoding
2
+ # hwdec=mediacodec-copy
3
+ # hwdec-codecs="h264,hevc,mpeg4,mpeg2video,vp8,vp9,av1"
4
+
5
+ ### tls: allow self signed certificate
6
+ # tls-verify=no
7
+ # tls-ca-file=""
8
+
9
+ ### sub: scale subtitles with video
10
+ # sub-scale-with-window=no
11
+ # sub-use-margins=no
package/app.json CHANGED
@@ -8,6 +8,9 @@
8
8
  "minSdkVersion": 26
9
9
  }
10
10
  }
11
+ ],
12
+ [
13
+ "./expo-plugin-libmpvvideo"
11
14
  ]
12
15
  ]
13
16
  }
@@ -0,0 +1,3 @@
1
+ module.exports = function withLibmpvVideo(config) {
2
+ return config;
3
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "expo-libmpv",
3
- "version": "0.1.2",
4
- "description": "A libmpv native component for Android",
3
+ "version": "0.2.0",
4
+ "description": "A libmpv Fabric component for Android",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
7
7
  "scripts": {
@@ -28,13 +28,14 @@
28
28
  "license": "MIT",
29
29
  "homepage": "https://github.com/XBigTK13X/expo-libmpv#readme",
30
30
  "dependencies": {
31
- "expo-build-properties": "^0.14.8"
31
+ "expo-build-properties": "~1.0.7"
32
32
  },
33
33
  "devDependencies": {
34
- "@types/react": "~19.0.0",
35
- "expo": "~53.0.0",
34
+ "@types/react": "~19.1.10",
35
+ "expo": "54.0.0-preview.16",
36
36
  "expo-module-scripts": "^4.1.10",
37
- "react-native": "0.79.1"
37
+ "react": "~19.1.0",
38
+ "react-native": "0.81.1"
38
39
  },
39
40
  "peerDependencies": {
40
41
  "expo": "*",