<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in EXMediaLibrary.podspec</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>c0a96678 - Upgrade react-native 0.72.0-rc.5 (#22588)</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-media-library/ios/EXMediaLibrary.podspec#c0a96678</link>
        <description>Upgrade react-native 0.72.0-rc.5 (#22588)# Whyupgrade react-native 0.72 for sdk 49close ENG-8011# How- bump package versions  - `react-native 0.71.3 -&gt; 0.72.0-rc.5`  - `metro-react-native-babel-preset 0.73.9 -&gt; 0.76.5`- [bare-expo][templates][fabric-tester] migrate template base on [upgrade-helper](https://react-native-community.github.io/upgrade-helper/?from=0.71.7&amp;to=0.72.0-rc.5)- [expo-template-tabs] remove the metro version overrides for expo-router.- [core][dev-laucher][dev-menu][media-library][screen-orientation][splash-screen][updates-interface][updates] add the `install_modules_dependencies` to support new architecture + use_frameworks!- [core][autolinking] fix some new architecture error on ios- [react-native-lab] update our fork to 0.72.0-rc.5 based- [go][tools] fix **react-native-lab/react-native/packages/react-native** path move because of react-native&apos;s repo monorepo changes- [go][android] fix gradle 8 errors- [go][ios] add `RCT_REMOTE_PROFILE=0` to fix the `RCT_ENABLE_INSPECTOR needs to be set to fulfill RCT_REMOTE_PROFILE` build error- [ncl] remove `ProgressViewIOS` / `ProgressBarAndroid` since they are deprecated/removed in 0.72- [dev-menu][dev-launcher] rebuild bundles# Note- react-native-web is not bumped because of the [issue](https://github.com/necolas/react-native-web/issues/2523), so it&apos;s still react-native-web@~0.18.10.- currently disable ci typecheck for @expo/cli because of upstream metro typescript support. i&apos;ll have another pr to fix those errors.- updates e2e ci on android is broken at [here](https://github.com/expo/expo/blob/fada3d764957779fbfc3d7b723d185db1d933d95/packages/expo-updates/e2e/fixtures/Updates.e2e.ts#L518). i doubt if that&apos;s related to the react scheduler change. i&apos;d disabled the failed test case.- the react-native upstream [migrated away the `@types/jest`](https://github.com/facebook/react-native/pull/36068). i was afraid that will be a breaking change to the existing jest test code since it requires the explicit `@jest/globals` import. i didn&apos;t do this in this upgrade.# Test Plan- &#9989; fabric-tester (without expo-dev-client)- &#9989; ci passed. there are some errors which are known:  - updates e2e on android: as mentioned above  - ios expo go on eas build: versioned expo go are broken on eas build m1 worker. this is also happening on main.  - android client: no space left on the ubuntu worker. this is also happening on main.- &#9989; bare-expo- &#9989; unversioned expo go + ncl---------Co-authored-by: Tomasz Sapeta &lt;tomasz.sapeta@swmansion.com&gt;

            List of files:
            /expo/packages/expo-media-library/ios/EXMediaLibrary.podspec</description>
        <pubDate>Wed, 07 Jun 2023 07:37:48 +0000</pubDate>
        <dc:creator>Kudo Chien &lt;kudo@expo.dev&gt;</dc:creator>
    </item>
<item>
        <title>c88b85cf - [ios] Bump deployment target to 13.0 (#18873)</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-media-library/ios/EXMediaLibrary.podspec#c88b85cf</link>
        <description>[ios] Bump deployment target to 13.0 (#18873)

            List of files:
            /expo/packages/expo-media-library/ios/EXMediaLibrary.podspec</description>
        <pubDate>Wed, 14 Sep 2022 07:55:46 +0000</pubDate>
        <dc:creator>Tomasz Sapeta &lt;tomasz.sapeta@swmansion.com&gt;</dc:creator>
    </item>
<item>
        <title>9886c0aa - [expo-modules][ios] Fix errors from use_frameworks in Podfile (#14523)</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-media-library/ios/EXMediaLibrary.podspec#9886c0aa</link>
        <description>[expo-modules][ios] Fix errors from use_frameworks in Podfile (#14523)# Whyclose [ENG-1772](https://linear.app/expo/issue/ENG-1772/regression-test-for-use-frameworks-in-podfile)fixes #13920# How- error: `The &apos;App&apos; target has transitive dependencies that include static binaries`declare `static_framework = true` in podspec. since all expo-modules ship in either source code or static xcframework, it should make sense to add `static_framework` declaration and solve this kind of errors.- error: generated swift runtime header not foundfix like this because in framework mode, generated headers are inside module.```diff+#if __has_include(&lt;ExpoModulesCore/ExpoModulesCore-Swift.h&gt;)+// For cocoapods framework, the generated swift header will be inside ExpoModulesCore module+#import &lt;ExpoModulesCore/ExpoModulesCore-Swift.h&gt;+#else #import &quot;ExpoModulesCore-Swift.h&quot;+#endif```- error: [gl] `&lt;cassert&gt;` import not foundthis is supported in c++, thus rename to objc++ .mm files.- error: [gl] `BLOCK_SAFE_RUN` inconsistent left/right operands typesthis is side effect after renaming expo-gl files as .mm. fixed by explicitly cast as void.- error: [core] undefined symbols in linking time, e.g. `EXRegisterModule`this is side effect after renaming expo-gl files as .mm. fixed by export symbols by `extern &quot;C&quot;`, otherwise c++ will have different name mangling between c.- rename `expo-image` pod to `EXImage`- error: `Include of non-modular header inside framework module`adding `DEFINES_MODULES` for cocoapods to create modulemap file. for external dependency like firebase, ignore the error by adding `CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES`- error: expo-constant&apos;s app.config and expo-updates&apos; app.manifest not foundin use_frameworks mode, the path is the same with non  framework mode. `/$UNLOCALIZED_RESOURCES_FOLDER_PATH` is unnecessary. - error: [barcode-scanner] ZXingObjC podspec GCC_PREPROCESSOR_DEFINITIONS does not export to EXBarCodeScanner and cause headers not foundadd these defines explicitly- [templates] add missing `react_native_post_install` from react-native 0.64 upgrade- error: `Cycle inside FBReactNativeSpec; building could produce unreliable results. This usually can be resolved by moving the shell script phase &apos;[CP-User] Generate Specs&apos; so that it runs before the build phase that depends on its outputs.`workaround by moving `FBReactNativeSpec` build phase script order.Co-authored-by: Tomasz Sapeta &lt;tomasz.sapeta@swmansion.com&gt;# Test Plan## prebuilt xcframework test```shexpo init -t /path/to/expo/templates/expo-template-bare-minimum sdk43cd sdk43# add `s.static_framework = true` for each `node_modules/expo-*/ios/*.podspec`cd ios# add `use_frameworks!` to Podfilerm -rf Pods &amp;&amp; pod installcd ..expo run:iosexpo run:ios --configuration Release```## regression for all expo-modules```shexpo init -t /path/to/expo/templates/expo-template-bare-minimum sdk43cd sdk43yarn add file:/path/to/expo/packages/expo-* # add all expo-modules one-by-one# test non framework modeexpo run:iosexpo run:ios --configuration Release# test framework modecd ios# add `use_frameworks!` to Podfilerm -rf Pods &amp;&amp; pod installcd ..expo run:iosexpo run:ios --configuration Release```

            List of files:
            /expo/packages/expo-media-library/ios/EXMediaLibrary.podspec</description>
        <pubDate>Tue, 28 Sep 2021 08:37:25 +0000</pubDate>
        <dc:creator>Kudo Chien &lt;kudo@expo.io&gt;</dc:creator>
    </item>
<item>
        <title>71ebd28e - [ios] Bump deployment target to 12.0 (#14383)</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-media-library/ios/EXMediaLibrary.podspec#71ebd28e</link>
        <description>[ios] Bump deployment target to 12.0 (#14383)* drop ios 11* update bare-sandbox* forgot some* add PR link to changelogs* Update packages/expo-cellular/CHANGELOG.mdCo-authored-by: Expo CI &lt;34669131+expo-ci@users.noreply.github.com&gt;* et pod-install after rebaseCo-authored-by: Expo CI &lt;34669131+expo-ci@users.noreply.github.com&gt;

            List of files:
            /expo/packages/expo-media-library/ios/EXMediaLibrary.podspec</description>
        <pubDate>Mon, 13 Sep 2021 14:40:05 +0000</pubDate>
        <dc:creator>Charlie Cruzan &lt;35579283+cruzach@users.noreply.github.com&gt;</dc:creator>
    </item>
<item>
        <title>a0af239b - [ios] Migrate expo-media-library to use expo-modules-core (#13755)</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-media-library/ios/EXMediaLibrary.podspec#a0af239b</link>
        <description>[ios] Migrate expo-media-library to use expo-modules-core (#13755)

            List of files:
            /expo/packages/expo-media-library/ios/EXMediaLibrary.podspec</description>
        <pubDate>Mon, 26 Jul 2021 10:07:00 +0000</pubDate>
        <dc:creator>Tomasz Sapeta &lt;tomasz.sapeta@swmansion.com&gt;</dc:creator>
    </item>
<item>
        <title>fb3d99c5 - [permissions] Migrate interface to expo-modules-core (#12961)</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-media-library/ios/EXMediaLibrary.podspec#fb3d99c5</link>
        <description>[permissions] Migrate interface to expo-modules-core (#12961)

            List of files:
            /expo/packages/expo-media-library/ios/EXMediaLibrary.podspec</description>
        <pubDate>Mon, 24 May 2021 12:48:51 +0000</pubDate>
        <dc:creator>Tomasz Sapeta &lt;1714764+tsapeta@users.noreply.github.com&gt;</dc:creator>
    </item>
<item>
        <title>fffbdb31 - [file-system] Migrate interface to expo-modules-core (#12918)</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-media-library/ios/EXMediaLibrary.podspec#fffbdb31</link>
        <description>[file-system] Migrate interface to expo-modules-core (#12918)

            List of files:
            /expo/packages/expo-media-library/ios/EXMediaLibrary.podspec</description>
        <pubDate>Thu, 13 May 2021 14:15:43 +0000</pubDate>
        <dc:creator>Tomasz Sapeta &lt;1714764+tsapeta@users.noreply.github.com&gt;</dc:creator>
    </item>
<item>
        <title>089a3d82 - [ios] Bump deployment target to iOS 11.0 (#11344)</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-media-library/ios/EXMediaLibrary.podspec#089a3d82</link>
        <description>[ios] Bump deployment target to iOS 11.0 (#11344)

            List of files:
            /expo/packages/expo-media-library/ios/EXMediaLibrary.podspec</description>
        <pubDate>Tue, 15 Dec 2020 11:05:35 +0000</pubDate>
        <dc:creator>Tomasz Sapeta &lt;1714764+tsapeta@users.noreply.github.com&gt;</dc:creator>
    </item>
<item>
        <title>52a1f6d0 - [ios] Require CocoaPods &gt;=1.10.0 to use prebuilt libraries</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-media-library/ios/EXMediaLibrary.podspec#52a1f6d0</link>
        <description>[ios] Require CocoaPods &gt;=1.10.0 to use prebuilt librariesBefore v1.10.0 binaries built for arm64 simulator were treated as the ones for the device and so the build fails at linking.

            List of files:
            /expo/packages/expo-media-library/ios/EXMediaLibrary.podspec</description>
        <pubDate>Fri, 04 Dec 2020 14:25:11 +0000</pubDate>
        <dc:creator>Tomasz Sapeta &lt;tsapeta@users.noreply.github.com&gt;</dc:creator>
    </item>
<item>
        <title>6e1dd0e8 - [ios] Make podspecs compatible with prebuilds (#11183)</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-media-library/ios/EXMediaLibrary.podspec#6e1dd0e8</link>
        <description>[ios] Make podspecs compatible with prebuilds (#11183)

            List of files:
            /expo/packages/expo-media-library/ios/EXMediaLibrary.podspec</description>
        <pubDate>Wed, 02 Dec 2020 13:18:06 +0000</pubDate>
        <dc:creator>Tomasz Sapeta &lt;1714764+tsapeta@users.noreply.github.com&gt;</dc:creator>
    </item>
<item>
        <title>25be6b63 - [branch][image][media-library][random][splash-screen][updates][Expo][iOS] Change &apos;React&apos; dependency to &apos;React-Core&apos; (#11057)</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-media-library/ios/EXMediaLibrary.podspec#25be6b63</link>
        <description>[branch][image][media-library][random][splash-screen][updates][Expo][iOS] Change &apos;React&apos; dependency to &apos;React-Core&apos; (#11057)Co-authored-by: Brent Vatne &lt;brentvatne@gmail.com&gt;

            List of files:
            /expo/packages/expo-media-library/ios/EXMediaLibrary.podspec</description>
        <pubDate>Tue, 17 Nov 2020 04:22:34 +0000</pubDate>
        <dc:creator>Bart&#322;omiej Bukowski &lt;bartlomiej.bukowski@swmansion.com&gt;</dc:creator>
    </item>
<item>
        <title>5fe873e1 - [expo-media-library][ios] Add `presentPermissionsPickerAsync` (#10662)</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-media-library/ios/EXMediaLibrary.podspec#5fe873e1</link>
        <description>[expo-media-library][ios] Add `presentPermissionsPickerAsync` (#10662)# WhyAdd function (see https://github.com/expo/expo/pull/9423#issuecomment-707237822) which will display prompt with permitted assets. # How- added `presentLimitedLibraryPickerAsync` function - added example to NCL - added a way to check if the user changed the permitted assets # ToDo: - [x] run pod install   - [x] client  - [x] bare-expo# Test Plan- NCL:  - bare &#9989;  - client &#9989;

            List of files:
            /expo/packages/expo-media-library/ios/EXMediaLibrary.podspec</description>
        <pubDate>Fri, 13 Nov 2020 14:36:30 +0000</pubDate>
        <dc:creator>&#321;ukasz Kosmaty &lt;lukasz.kosmaty@swmansion.com&gt;</dc:creator>
    </item>
<item>
        <title>758c4d14 - [media-library] Add missing image loader for MediaLibrary in bare workflow (#8304)</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-media-library/ios/EXMediaLibrary.podspec#758c4d14</link>
        <description>[media-library] Add missing image loader for MediaLibrary in bare workflow (#8304)# WhyFixes #7826# How- Added `EXMediaLibraryImageLoader` module that implements `RCTImageURLLoader` so it will be used to load images with `assets-library://` and `ph://` schemes.# Test PlanTested MediaLibrary examples in both bare and manage workflows. Photos are rendering correctly now.

            List of files:
            /expo/packages/expo-media-library/ios/EXMediaLibrary.podspec</description>
        <pubDate>Fri, 15 May 2020 09:38:33 +0000</pubDate>
        <dc:creator>Tomasz Sapeta &lt;1714764+tsapeta@users.noreply.github.com&gt;</dc:creator>
    </item>
<item>
        <title>b594f7c0 - [expo-media-library] Add UMFileSystemInterface dependency to podspec  (#7861)</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-media-library/ios/EXMediaLibrary.podspec#b594f7c0</link>
        <description>[expo-media-library] Add UMFileSystemInterface dependency to podspec  (#7861)* Add UMFileSystemInterface dependency to expo-media-library podspec* Some more files, not sure what should go in here...* [expo-media-library] Pod install* [expo-media-library] Add changelog entry* [expo-media-library] Apply requested changesCo-authored-by: Ashoat Tevosyan &lt;ashoat@gmail.com&gt;

            List of files:
            /expo/packages/expo-media-library/ios/EXMediaLibrary.podspec</description>
        <pubDate>Fri, 17 Apr 2020 13:58:01 +0000</pubDate>
        <dc:creator>&#321;ukasz Kosmaty &lt;lukasz.kosmaty@swmansion.com&gt;</dc:creator>
    </item>
<item>
        <title>8e06e510 - [media-library] Allow to get assets created in specified time range (#5166)</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-media-library/ios/EXMediaLibrary.podspec#8e06e510</link>
        <description>[media-library] Allow to get assets created in specified time range (#5166)# WhyThere are some use cases where we want to pick media assets from some specific period of time, like during a visit in a food place. That use case is also used in Gyroscope app where I wanted to make it work more smoothly and get rid of filtering all the assets in JS.# HowAdded `createdAfter` and `createdBefore` options to `MediaLibrary.getAssetsAsync` and also added `requestPermissionsAsync` and `getPermissionsAsync` functions which would also be a part of #5061 but I decided to include them earlier so I don&apos;t have to migrate in the future releases &#55357;&#56837; # Test PlanAdded tests to test-suite + I tested it in Gyroscope app

            List of files:
            /expo/packages/expo-media-library/ios/EXMediaLibrary.podspec</description>
        <pubDate>Mon, 05 Aug 2019 13:30:11 +0000</pubDate>
        <dc:creator>Tomasz Sapeta &lt;tsapeta@users.noreply.github.com&gt;</dc:creator>
    </item>
<item>
        <title>8d441c7e - [packages] Move unimodules foundation to `org.unimodules` scope</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-media-library/ios/EXMediaLibrary.podspec#8d441c7e</link>
        <description>[packages] Move unimodules foundation to `org.unimodules` scope

            List of files:
            /expo/packages/expo-media-library/ios/EXMediaLibrary.podspec</description>
        <pubDate>Thu, 14 Mar 2019 12:11:47 +0000</pubDate>
        <dc:creator>Stanis&#322;aw Chmiela &lt;sjchmiela@users.noreply.github.com&gt;</dc:creator>
    </item>
<item>
        <title>eafa96e0 - Move universal modules to packages (#2380)</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-media-library/ios/EXMediaLibrary.podspec#eafa96e0</link>
        <description>Move universal modules to packages (#2380)* Move modules to packages* Remove unused, old, unmaintained standalone projects* Replace [&apos;&quot;/]modules[&apos;&quot;/] with packages* Run pod install after regenerating ios files

            List of files:
            /expo/packages/expo-media-library/ios/EXMediaLibrary.podspec</description>
        <pubDate>Wed, 10 Oct 2018 06:33:58 +0000</pubDate>
        <dc:creator>Stanis&#322;aw Chmiela &lt;sjchmiela@users.noreply.github.com&gt;</dc:creator>
    </item>
</channel>
</rss>
