<?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 EXApplication.podspec</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>ef901781 - Apple TV support 1: podspec and code changes for commonly used modules (#24329)</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-application/ios/EXApplication.podspec#ef901781</link>
        <description>Apple TV support 1: podspec and code changes for commonly used modules (#24329)# WhyFirst of a series of PRs to add Apple TV support for many (but not all)Expo SDK modules.This PR makes Apple TV able to compile for apps using`react-native-tvos@0.72.4-0` and ONLY the following modules:- expo- expo-application- expo-constants- expo-eas-client- expo-file-system- expo-font- expo-json-utils- expo-keep-awake- expo-manifests- expo-modules-core- expo-splash-screen- expo-structured-headers- expo-updates-interface- expo-updates# How- Add tvOS to podspecs- Native code changes wrapped in `#if TARGET_OS_TV` (for Objective C) or`#if os(tvOS)` (for Swift)- Import source for the `ASN1Decoder` Swift framework used by`expo-updates`, as the public podspec for that framework does not yetsupport tvOS# Test Plan- Manual testing with a template still in development- Existing CI for iOS should pass (nothing should be broken)# Checklist&lt;!--Please check the appropriate items below if they apply to your diff.This is required for changes to Expo modules.--&gt;- [x] Documentation is up to date to reflect these changes (eg:https://docs.expo.dev and README.md).- [x] Conforms with the [Documentation Writing StyleGuide](https://github.com/expo/expo/blob/main/guides/Expo%20Documentation%20Writing%20Style%20Guide.md)- [x] This diff will work correctly for `npx expo prebuild` &amp; EAS Build(eg: updated a module plugin).

            List of files:
            /expo/packages/expo-application/ios/EXApplication.podspec</description>
        <pubDate>Mon, 11 Sep 2023 06:42:13 +0000</pubDate>
        <dc:creator>Douglas Lowder &lt;doug@expo.io&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-application/ios/EXApplication.podspec#c88b85cf</link>
        <description>[ios] Bump deployment target to 13.0 (#18873)

            List of files:
            /expo/packages/expo-application/ios/EXApplication.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-application/ios/EXApplication.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-application/ios/EXApplication.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-application/ios/EXApplication.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-application/ios/EXApplication.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>efd75dec - [ios] Migrate all remaining native code</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-application/ios/EXApplication.podspec#efd75dec</link>
        <description>[ios] Migrate all remaining native code

            List of files:
            /expo/packages/expo-application/ios/EXApplication.podspec</description>
        <pubDate>Mon, 16 Aug 2021 13:40:38 +0000</pubDate>
        <dc:creator>Tomasz Sapeta &lt;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-application/ios/EXApplication.podspec#089a3d82</link>
        <description>[ios] Bump deployment target to iOS 11.0 (#11344)

            List of files:
            /expo/packages/expo-application/ios/EXApplication.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-application/ios/EXApplication.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-application/ios/EXApplication.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-application/ios/EXApplication.podspec#6e1dd0e8</link>
        <description>[ios] Make podspecs compatible with prebuilds (#11183)

            List of files:
            /expo/packages/expo-application/ios/EXApplication.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>cf45390b - [expo-application] create expo-application unimodule (#5008)</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-application/ios/EXApplication.podspec#cf45390b</link>
        <description>[expo-application] create expo-application unimodule (#5008)* create expo-application unimoduleCo-authored-by: Robert Luo &lt;1998.robert@gmail.com&gt;Co-authored-by: Vivian Zhu &lt;tongyu@usc.edu&gt;* [docs] update docs description* [web] handle web constants and update format* [ios] cleanup inline methods and handle error with NSError* [docs] add error codes* [ios] resolve conditional logic and resolve promise twice* [docs] update getFirstInstallTimeAsync changes description* [web] add nullable constants to web* [android] add error codes* took out endConnection and things work* add error codes* [android] close install referral connectionwe didn&apos;t close the connection before, which could be dangerous/cause memory leaks. checked and this works* [docs/android] update error codes* Add ERR_APPLICATION_PACKAGE_NAME_NOT_FOUND code* Fix soem things in docs* [ios] add conditionals to avoid double invocation of promise* [docs] add note about types for nativeBuildVersionit seems that in the native code, for iOS the nativeBuildVersion in Info.plist is a string, while android.versionCode is an int* [docs] update installation guide in README and docs* rename getFirstInstallTimeAsync to getInstallationTimeAsync and bundleId to applicationId* [android] change constant and method names* bundleId-&gt;applicationId* getFirstInstallTimeAsync() -&gt; getInstallationTimeAsync()* [android/docs] add debugger log statements* update docs and code format in js* [ios] update pods* [android/docs] add promise rejection for hanging promise* optimize imports* add promise rejection + error code* remove Log.d* [docs] update docs format* [web] update getFirstInstallationTime to return null on web* [ios] reinstall podsran pod install to include `expo-application`* [ios] update c-style code format and remove checks* cast nativeBuildVersion to be string* Update build.gradleUpdate compilesdk version to 28* Update ApplicationModule.java* add more context on general case error* add current method to get version code for api version 28+* Update application.md* Update EXApplication.m* Update application.md

            List of files:
            /expo/packages/expo-application/ios/EXApplication.podspec</description>
        <pubDate>Thu, 08 Aug 2019 21:35:23 +0000</pubDate>
        <dc:creator>Robert Luo &lt;1998.robert@gmail.com&gt;</dc:creator>
    </item>
</channel>
</rss>
