Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add UMFileSystemInterface dependency to expo-media-library podspec #7861

Merged
merged 5 commits into from Apr 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion ios/Podfile.lock
Expand Up @@ -1610,6 +1610,7 @@ PODS:
- UMFileSystemInterface
- EXMediaLibrary (8.1.0):
- UMCore
- UMFileSystemInterface
- UMPermissionsInterface
- EXNetwork (2.1.1):
- UMCore
Expand Down Expand Up @@ -3844,7 +3845,7 @@ SPEC CHECKSUMS:
EXLocalization: 1997068470bdfb7601fd58dbbf85ba1cde36fb82
EXLocation: bbd487fd96a18a3ad9725389bbb94c4a5f78edf3
EXMailComposer: 8efe254989ceace18681b98c049c6c0209d4ae56
EXMediaLibrary: 30a65e1eef453c6e7a76754febeb88c0d0fba232
EXMediaLibrary: 02a13521d05ca381b08f7d745a9602569eade072
EXNetwork: 1f9719a912524abc04d06a27a0fdf25bacdd4aad
EXPermissions: 24b97f734ce9172d245a5be38ad9ccfcb6135964
EXPrint: 44b97ce29f50e83225a1aa22808d652cf1de82db
Expand Down
4 changes: 2 additions & 2 deletions ios/Pods/.project_cache/installation_cache.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

120 changes: 69 additions & 51 deletions ios/Pods/EXMediaLibrary.xcodeproj/project.pbxproj

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions ios/Pods/Local Podspecs/EXMediaLibrary.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion ios/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions packages/expo-media-library/CHANGELOG.md
Expand Up @@ -7,3 +7,5 @@
### 🎉 New features

### 🐛 Bug fixes

- Fixed `MediaLibrary` not compiling with the `use_frameworks!` option in the bare React Native application. ([#7861](https://github.com/expo/expo/pull/7861) by [@Ashoat](https://github.com/Ashoat))
1 change: 1 addition & 0 deletions packages/expo-media-library/ios/EXMediaLibrary.podspec
Expand Up @@ -18,4 +18,5 @@ Pod::Spec.new do |s|

s.dependency 'UMCore'
s.dependency 'UMPermissionsInterface'
s.dependency 'UMFileSystemInterface'
end
3 changes: 2 additions & 1 deletion packages/expo-media-library/package.json
Expand Up @@ -39,7 +39,8 @@
},
"unimodulePeerDependencies": {
"@unimodules/core": "*",
"unimodules-permissions-interface": "*"
"unimodules-permissions-interface": "*",
"unimodules-filesystem-interface": "*"
},
"peerDependencies": {
"react": "*",
Expand Down