Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Parse Crash Reporting import with pods not working on Swift

I have update the Parse SDK to 1.6.0 through CocoaPods. IT works seems I am able to use the Local Datastore. However when I try to enable ParseCrashReporting doing ParseCrashReporting.enable()

But Xcode does not find ParseCrashReporting.

Anyone having the same issue ?

Thank you !

like image 542
user2984400 Avatar asked Dec 17 '14 18:12

user2984400


1 Answers

ParseCrashReporting is in its own cocoapod spec. Make sure you add pod 'ParseCrashReporting' to your Podfile. Then import the headers as @Lucas pointed out.

Reference: http://cocoapods.org/?q=parsecrashreporting

like image 91
Anthony Persaud Avatar answered Sep 26 '22 05:09

Anthony Persaud