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
I am trying to use Parse in a project that has heavily leveraged the iOS framework. I am building a similar version of the application for the TV, but of course I need the tvOS target included. I've scoured all of the issues on this repository related to tvOS support and I have searched Stack Overflow.
How do I use the tvOS framework and iOS framework in the same Xcode project?
Any leads would be appreciated.
Thanks! 💃
The text was updated successfully, but these errors were encountered:
Hey @istx25, our SDK supports tvOS as well as iOS, but they are somewhat different behind the scenes.
To make this happen in your app - there are 2 paths you can follow:
Download Parse-iOS and Parse-tvOS from releases page of this repo and unarchive in separate directories in your project folder.
Drag & Drop all frameworks in both folders to your Xcode project and link with relative targets (please note that both Parse.framework and Bolts.framework from archives are compatible with only either iOS or tvOS, so please make sure you are including the proper ones for each platform/target).
# Uncomment this line if you're using Swift or targeting iOS 8.0+# use_frameworks!target'PodTest'doplatform:tvos,'9.0'pod'Parse'endtarget'PodTest-iOS'doplatform:ios,'8.0'pod'Parse'end
Let me know if this helps or please reopen this issue if it doesn't.
Hello!
I am trying to use Parse in a project that has heavily leveraged the iOS framework. I am building a similar version of the application for the TV, but of course I need the tvOS target included. I've scoured all of the issues on this repository related to tvOS support and I have searched Stack Overflow.
How do I use the tvOS framework and iOS framework in the same Xcode project?
Any leads would be appreciated.
Thanks! 💃
The text was updated successfully, but these errors were encountered: