@movementinfra/expo-twostep-video 0.1.7 → 0.1.8

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.
@@ -1,6 +1,7 @@
1
1
  {
2
- "platforms": ["ios"],
2
+ "platforms": ["apple"],
3
3
  "apple": {
4
- "modules": ["ExpoTwoStepVideoModule"]
4
+ "modules": ["ExpoTwoStepVideoModule"],
5
+ "podName": "ExpoTwoStepVideo"
5
6
  }
6
7
  }
@@ -3,7 +3,7 @@ require 'json'
3
3
  package = JSON.parse(File.read(File.join(__dir__, '..', 'package.json')))
4
4
 
5
5
  Pod::Spec.new do |s|
6
- s.name = 'ExpoTwostepVideo'
6
+ s.name = 'ExpoTwoStepVideo'
7
7
  s.version = package['version']
8
8
  s.summary = package['description']
9
9
  s.description = package['description']
@@ -20,10 +20,15 @@ Pod::Spec.new do |s|
20
20
  # Swift/Objective-C compatibility
21
21
  s.pod_target_xcconfig = {
22
22
  'DEFINES_MODULE' => 'YES',
23
+ 'PRODUCT_MODULE_NAME' => 'ExpoTwoStepVideo',
23
24
  }
24
25
 
25
26
  s.source_files = [
26
27
  "*.swift",
27
28
  "TwoStepVideo/**/*.swift"
28
29
  ]
30
+
31
+ s.exclude_files = [
32
+ "Package.swift"
33
+ ]
29
34
  end
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@movementinfra/expo-twostep-video",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "Minimal video editing for React Native using AVFoundation",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",