Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Property Has a Previous Declaration

I tried adding XMPP framework into my ios project and I couldn't get it working. Turns out I added it incorrectly, So I tried removing it and now without XMPP I am getting these errors: Thanks in Advance! enter image description here

like image 922
DanHabib Avatar asked Oct 15 '14 15:10

DanHabib


2 Answers

This could also happen because of CocoaPods. I had this issue with version cocoapods-0.39.0, downgrading to cocoapods-0.38.2 fixed it for now.

like image 120
Antoine Avatar answered Sep 23 '22 18:09

Antoine


You have two copies of AFNetworking in your project. Delete one of them.

...or better yet, use CocoaPods to integrate AFNetworking and your XMPP framework into your project.

like image 32
mattt Avatar answered Sep 21 '22 18:09

mattt