This repository was archived by the owner on Jun 13, 2023. It is now read-only.
-
- Notifications
You must be signed in to change notification settings - Fork 132
This repository was archived by the owner on Jun 13, 2023. It is now read-only.
Xcode 12 beta 6 / iOS 14 incompatibility #228
Copy link
Copy link
Closed
Description
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
- Using Xcode beta 6 and a fresh iOS app project, run
pod init
from the terminal - Add the above lines to the Podfile
- 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
Labels
No labels