Search Unity

  1. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  2. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

IOS 12 Admob 7.0.1 Show() Sigabrt Error

Discussion in 'General Discussion' started by oguz1ak, Jun 5, 2022.

  1. oguz1ak

    oguz1ak

    Joined:
    Jul 10, 2015
    Posts:
    5
    Hello,

    While I am updating my game with newer technologies i faced with a sigabrt error on ios 12, not in ios 15 . Unity does not give much details but after making some trials I realized that the problem is about rewardedAd.Show() method (similarly it gives error if I enable banner or interstitials on ios 12- ipad).

    I am using unity2021.3.3f1(slicon-m1)
    Admob 7.0.1
    Xcode 13.4

    Code (CSharp):
    1. if (this.rewardedAd.IsLoaded())
    2.             {
    3.                 adsbuttonclicked = true;
    4.                 updateadsbuttons();
    5.                 Debug.Log("watch3");
    6.                 this.rewardedAd.Show();
    7.                 Debug.Log("watch4");
    8.             }
    in that code block it writes "watch3" but not "watch4" in ios 12, gives sigabrt error. But no problem exist in ios 15.

    Is it a bug? What should I do?
    Thanks.