I'm working on an iOS framework project which is using a third-party framework classes so I added third-party framework under Linked frameworks and libraries section.
When I add my custom framework in my iOS app project, I'm getting this warning for each class
objc[3139]: Class 'class_name' is implemented in both /private/var/containers/Bundle/Application/C131AF0F-7CF8-4360-8716-3E8A595169D6/'app_name'.app/Frameworks/'framework_name'.framework/'framework_name' and /var/containers/Bundle/Application/C131AF0F-7CF8-4360-8716-3E8A595169D6/'app_name'.app/'app_name'. One of the two will be used. Which one is undefined.
iOS app project is also linked with that third-party framework. So I think getting this issue because my framework also contains compiled version of third-party framework.
I didn't find any proper solution for this. Can anyone tell me how to get rid of this?
Is there any way i can make it work?