Reputation: 3221
I'm on the final step of migrating from Parse to Heroku. I just need to update the code in my app to include the new keys and sever info. I put in this code:
let config = ParseClientConfiguration(block: {
(ParseMutableClientConfiguration) -> Void in
ParseMutableClientConfiguration.applicationId = "...";
ParseMutableClientConfiguration.clientKey = "...";
ParseMutableClientConfiguration.server = "...";
});
Parse.initializeWithConfiguration(config);
And I get the error on the first line.
I have already imported Parse, so I'm not entirely sure why I'm getting this.
Upvotes: 3
Views: 2100
Reputation: 3221
I was using an outdated Parse SDK. I had to update. All is working now.
Upvotes: 4