GADMobileAds.h 762 B

12345678910111213141516171819202122
  1. //
  2. // GADMobileAds.h
  3. // Google Mobile Ads SDK
  4. //
  5. // Copyright 2015 Google Inc. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface GADMobileAds : NSObject
  9. /// Disables automated in app purchase (IAP) reporting. Must be called before any IAP transaction is
  10. /// initiated. IAP reporting is used to track IAP ad conversions. Do not disable reporting if you
  11. /// use IAP ads.
  12. + (void)disableAutomatedInAppPurchaseReporting;
  13. /// Disables automated SDK crash reporting. If not called, the SDK records the original exception
  14. /// handler if available and registers a new exception handler. The new exception handler only
  15. /// reports SDK related exceptions and calls the recorded original exception handler.
  16. + (void)disableSDKCrashReporting;
  17. @end