Example #1
0
 /// <summary>
 /// Returns the singleton client.
 /// </summary>
 /// <returns>The client.</returns>
 public static AppLovinClientImpl CreateClient()
 {
     if (sInstance == null)
     {
         sInstance = new AppLovinClientImpl();
     }
     return(sInstance);
 }
Example #2
0
 public BannerEvents(AppLovinClientImpl client)
 {
     this.client = client;
     SubscribeToBannerEvents();
 }
Example #3
0
 public InterstitialEvents(AppLovinClientImpl client)
 {
     this.client = client;
     SubscribeToInterstitialEvents();
 }
Example #4
0
 public RewardedAdEvents(AppLovinClientImpl client)
 {
     this.client = client;
     SubscribeToRewardedEvents();
 }
Example #5
0
 public void setAdClient(AppLovinClientImpl inputClient)
 {
     this.adClient = inputClient;
 }