<?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 EXBarCodeScanner.podspec</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>291e040f - [autolinking] Fix enabling modular headers for subspecs (#20582)</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-barcode-scanner/ios/EXBarCodeScanner.podspec#291e040f</link>
        <description>[autolinking] Fix enabling modular headers for subspecs (#20582)

            List of files:
            /expo/packages/expo-barcode-scanner/ios/EXBarCodeScanner.podspec</description>
        <pubDate>Fri, 23 Dec 2022 07:56:22 +0000</pubDate>
        <dc:creator>Tomasz Sapeta &lt;tomasz.sapeta@swmansion.com&gt;</dc:creator>
    </item>
<item>
        <title>5d715522 - [iOS][barcode-scanner] Migrate view manager to new API (#20441)</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-barcode-scanner/ios/EXBarCodeScanner.podspec#5d715522</link>
        <description>[iOS][barcode-scanner] Migrate view manager to new API (#20441)

            List of files:
            /expo/packages/expo-barcode-scanner/ios/EXBarCodeScanner.podspec</description>
        <pubDate>Thu, 22 Dec 2022 18:21:30 +0000</pubDate>
        <dc:creator>Alan Hughes &lt;30924086+alanjhughes@users.noreply.github.com&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-barcode-scanner/ios/EXBarCodeScanner.podspec#c88b85cf</link>
        <description>[ios] Bump deployment target to 13.0 (#18873)

            List of files:
            /expo/packages/expo-barcode-scanner/ios/EXBarCodeScanner.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>e7f22797 - Remove deprecated unimodules packages from repository (#14585)</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-barcode-scanner/ios/EXBarCodeScanner.podspec#e7f22797</link>
        <description>Remove deprecated unimodules packages from repository (#14585)

            List of files:
            /expo/packages/expo-barcode-scanner/ios/EXBarCodeScanner.podspec</description>
        <pubDate>Thu, 30 Sep 2021 21:19:13 +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-barcode-scanner/ios/EXBarCodeScanner.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-barcode-scanner/ios/EXBarCodeScanner.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-barcode-scanner/ios/EXBarCodeScanner.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-barcode-scanner/ios/EXBarCodeScanner.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>314e850c - [ios] Migrate some packages to use expo-modules-core</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-barcode-scanner/ios/EXBarCodeScanner.podspec#314e850c</link>
        <description>[ios] Migrate some packages to use expo-modules-core

            List of files:
            /expo/packages/expo-barcode-scanner/ios/EXBarCodeScanner.podspec</description>
        <pubDate>Sat, 24 Jul 2021 09:19:55 +0000</pubDate>
        <dc:creator>Tomasz Sapeta &lt;tsapeta@users.noreply.github.com&gt;</dc:creator>
    </item>
<item>
        <title>78c37c0d - [image-loader] Migrate interface to expo-modules-core (#13022)</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-barcode-scanner/ios/EXBarCodeScanner.podspec#78c37c0d</link>
        <description>[image-loader] Migrate interface to expo-modules-core (#13022)

            List of files:
            /expo/packages/expo-barcode-scanner/ios/EXBarCodeScanner.podspec</description>
        <pubDate>Tue, 25 May 2021 11:13:20 +0000</pubDate>
        <dc:creator>Tomasz Sapeta &lt;1714764+tsapeta@users.noreply.github.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-barcode-scanner/ios/EXBarCodeScanner.podspec#fb3d99c5</link>
        <description>[permissions] Migrate interface to expo-modules-core (#12961)

            List of files:
            /expo/packages/expo-barcode-scanner/ios/EXBarCodeScanner.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>f814088e - [barcode] Migrate interface to expo-modules-core (#12912)</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-barcode-scanner/ios/EXBarCodeScanner.podspec#f814088e</link>
        <description>[barcode] Migrate interface to expo-modules-core (#12912)

            List of files:
            /expo/packages/expo-barcode-scanner/ios/EXBarCodeScanner.podspec</description>
        <pubDate>Thu, 13 May 2021 13:56:13 +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-barcode-scanner/ios/EXBarCodeScanner.podspec#089a3d82</link>
        <description>[ios] Bump deployment target to iOS 11.0 (#11344)

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

            List of files:
            /expo/packages/expo-barcode-scanner/ios/EXBarCodeScanner.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>1f9c336a - [BarcodeScanner][iOS] Fix scanning PDF417 with \0 (null) charac&#8230; (#5976)</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-barcode-scanner/ios/EXBarCodeScanner.podspec#1f9c336a</link>
        <description>[BarcodeScanner][iOS] Fix scanning PDF417 with \0 (null) charac&#8230; (#5976)* [BarcodeScanner][iOS] Add ZXing barcode scanning library* [BarcodeScanning][iOS] Fix PDF417 code scanning containing u&apos;\0&apos; (null) characters* Update CHANGELOG* [BarcodeScanner][iOS] Limit ZXing library to only PDF417 related files* [BarcodeScanner][iOS] Make ZXing scan Code39 barcode type

            List of files:
            /expo/packages/expo-barcode-scanner/ios/EXBarCodeScanner.podspec</description>
        <pubDate>Tue, 12 Nov 2019 14:57:03 +0000</pubDate>
        <dc:creator>Bart&#322;omiej Bukowski &lt;bartlomiej.bukowski@swmansion.com&gt;</dc:creator>
    </item>
<item>
        <title>284d4840 - [Permission] Rework (#5061)</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-barcode-scanner/ios/EXBarCodeScanner.podspec#284d4840</link>
        <description>[Permission] Rework (#5061)* [Permissions] Extract base class for requester* [Permissions] Refactor* [Permissions] Make podspecs for each requester* [Permissions] Add missing self ensurement to requesters* [Permissions] Android fix* [Permissions] Rewrite module to kotlin* [Permissions] Move scoped ask to activity* [Permissions] Remove permissions manager* [Permissions] Remove PermissionsServiceBinding* [Permissions] Make requesters* [Permissions] Improve code styling* [Permissions] Make SystemBrightnessRequester (#5147)* Make SystemBrightnessRequester* Make type enumCo-Authored-By: Bart&#322;omiej Bukowski &lt;bartlomiejbukowski.b@gmail.com&gt;* [Permissions] Rewrite android native api (#5186)* Move logic form module to service* Remove static var from PermissionsService* Make getPermission not throwable* Store asked permissions* [Permissions] Make requester registrable (#5187)* Clean iOS* Fix scoped permissions status (never undetermined)* Requesters belong to EXPermission* Remove permissions delegate* Make requester registrable* [Permissions] Small fixes* [Permissions] Add app ownership check and fix code style* [Permissions] Rework native api (#5418)* [Permissions] Move requesters to modules on iOS* [Permissions] Add bool granted* [Permissions] Add to native modules, permissions related methods* [Permissions] Repair CI* [Permissions] Fix typo* [Permissions] Reduce boilerplate code* [Permissions] Fix error description* [Permissions] Export constants for permissions status* [Permissions] Rename methods wrapper* [Permissions] Remove scoped permissions from standalone apps* [Permissions] Fix lateinit and scoped permissionsLocation module in OnHostResume calls getPermissions method before Activity Provider is available.* [Permissions] Add `never ask again` support* [Permissions] Scoping only dangerous permission* [Permissions] Rename  `neverAskAgain` to `canAskAgain`* [Permissions] Run pod install* [Permissions] Update docs* [Permissions] Fix CI* [Permissions] Fix typo and imports after rebase* [Permissions] Small improvements in Android* [Permissions] Make test-suits pass* [Permissions] Add requested changes* [Permissions] Move ts types to unimodule* [Permissions] Add missing requester* [Permissions] Small fixes* [Permissions] Fix after rebase* [Permissions] Update docs* [Permissions] Publish dev home* [Permissions] Add kotlin dependency to build.gradle* [Permissions] Fix permissions in ContactsModule* [Permissions] Set manifest in HomeActivity class* [Permissions] Regenerate pods projects

            List of files:
            /expo/packages/expo-barcode-scanner/ios/EXBarCodeScanner.podspec</description>
        <pubDate>Fri, 08 Nov 2019 15:51:13 +0000</pubDate>
        <dc:creator>&#321;ukasz Kosmaty &lt;lukasz.kosmaty@swmansion.com&gt;</dc:creator>
    </item>
<item>
        <title>491dde5d - [packages] Fix integration with use_frameworks</title>
        <link>http://172.16.0.5:8080/history/expo/packages/expo-barcode-scanner/ios/EXBarCodeScanner.podspec#491dde5d</link>
        <description>[packages] Fix integration with use_frameworks

            List of files:
            /expo/packages/expo-barcode-scanner/ios/EXBarCodeScanner.podspec</description>
        <pubDate>Thu, 09 May 2019 12:30:17 +0000</pubDate>
        <dc:creator>Stanis&#322;aw Chmiela &lt;sjchmiela@gmail.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-barcode-scanner/ios/EXBarCodeScanner.podspec#8d441c7e</link>
        <description>[packages] Move unimodules foundation to `org.unimodules` scope

            List of files:
            /expo/packages/expo-barcode-scanner/ios/EXBarCodeScanner.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-barcode-scanner/ios/EXBarCodeScanner.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-barcode-scanner/ios/EXBarCodeScanner.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>
