You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 13, 2023. It is now read-only.
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)