Skip to content
This repository was archived by the owner on Jun 13, 2023. It is now read-only.
This repository was archived by the owner on Jun 13, 2023. It is now read-only.

Xcode 12 beta 6 / iOS 14 incompatibility #228

@julianvogels

Description

@julianvogels

The Parse iOS SDK had an issue which lead to Xcode 12 beta 6not being able to compile: parse-community/Parse-SDK-iOS-OSX#1526

This was recently addressed in parse-community/Parse-SDK-iOS-OSX#1527., which is not released yet. The fix can only be integrated by modifying the Podfile to use the version from the Github repository directly:

pod 'Parse', :git => 'https://github.com/parse-community/Parse-SDK-iOS-OSX'
pod 'ParseLiveQuery', '2.7.1'

Since we are using ParseLiveQuery version 2.7.1 in the same project, pod install now fails with

ParseLiveQuery (from `https://github.com/parse-community/ParseLiveQuery-iOS-OSX`) was resolved to 2.7.1, which depends on
      Parse (~> 1.18.0)

because ParseLiveQuery depends on Parse version 1.18.0. Changing the Podfile to use ParseLiveQuery from Github directly does not fix the issue.

Repro Steps

  1. Using Xcode beta 6 and a fresh iOS app project, run pod init from the terminal
  2. Add the above lines to the Podfile
  3. Run pod install

Expected result

Pod installation succeeds

Actual results

Pod installation fails with dependency error (ParseLiveQuery 2.7.1 depends on Parse ~> 1.18.0)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions