Hello,
I'm getting the following error:
ERROR | [iOS] unknown: Encountered an unknown error (The 'Pods-App' target has transitive dependencies that include static binaries: (/Pods/Google-Mobile-Ads-SDK/Frameworks/frameworks/GoogleMobileAds.framework)) during validation.
I'm trying to create a podspec that depends on the Google-Mobile-Ads-SDK.
I have 2 source files that both are swift files.
spec.source_files = ['lib/*.swift']
spec.dependency 'Google-Mobile-Ads-SDK'
Using vendored_frameworks works with using the GoogleMobileAds.framework but then I can't add dependencies that depend themselves on Google-Mobile-Ads-SDK. I'm getting the following error:
ERROR | [iOS] unknown: Encountered an unknown error (The 'Pods-App' target has frameworks with conflicting names: googlemobileads.framework.) during validation.
Can someone help me?