extended-vlc-player 0.1.0 → 0.1.2

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.
Files changed (2) hide show
  1. package/app.plugin.js +1 -1
  2. package/package.json +1 -2
package/app.plugin.js CHANGED
@@ -53,7 +53,7 @@ function withIosPods(config, options) {
53
53
  tag: PODFILE_TAG,
54
54
  src: newSrc,
55
55
  newSrc: `\n # extended-vlc-player: configure MobileVLCKit static link + de-dupe libc++\n installer.pods_project.targets.each do |target|\n if target.name == 'MobileVLCKit'\n target.build_configurations.each do |config|\n config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '16.4'\n end\n end\n end\n`,
56
- anchor: /^post_install do \|installer\|$/m,
56
+ anchor: /^\s*post_install do \|installer\|$/m,
57
57
  offset: 1,
58
58
  comment: '#',
59
59
  }).contents;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "extended-vlc-player",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "React Native video player built on MobileVLCKit (iOS) and libVLC (Android) with true iOS Picture-in-Picture via AVSampleBufferDisplayLayer bridge.",
5
5
  "license": "MIT",
6
6
  "main": "build/index.js",
@@ -51,7 +51,6 @@
51
51
  ],
52
52
  "peerDependencies": {
53
53
  "expo": "*",
54
- "expo-modules-core": "*",
55
54
  "react": "*",
56
55
  "react-native": "*"
57
56
  },