FIRApp.configure()
GADMobileAds.configure(withApplicationID: "MY_APP_ID");
public func loadAd()
{
var video = GADRewardBasedVideoAd.sharedInstance()
video.delegate = self
video.load(GADRequest(), withAdUnitID: "MY_AD_UNIT")
}
`bitcode bundle could not be generated because '/Users/Val/Documents/Projects/Madjoh/Versus/libAdapterChartboostAds.a(GADMAdapterChartboostSingleton.o)' was built without full bitcode. All object files and libraries for bitcode must be generated from Xcode Archive or Install build for architecture armv7`The only way I can build is by removing bitcode.. However, I want to add the bitcode in my archive... How can I fix this problem ?
Thank you for your help.