I've successfully integrated a framework into my project and the build was successful. I'm planning to use it with Swift, so I've included the necessary imports in the bridging header or created a wrapper class in Objective-C to facilitate usage in Swift.
However, when I import adb_public.h and adb_porting.h, I encounter an error stating conflicting types for 'adb_trace_enable_porting'. It appears that both files have the same method name, which is causing this error. Do you have any workaround for this issue?

I've successfully integrated a framework into my project and the build was successful. I'm planning to use it with Swift, so I've included the necessary imports in the bridging header or created a wrapper class in Objective-C to facilitate usage in Swift.
However, when I import
adb_public.handadb_porting.h, I encounter an error stating conflicting types for 'adb_trace_enable_porting'. It appears that both files have the same method name, which is causing this error. Do you have any workaround for this issue?