Esempio n. 1
0
 public static void showMoreApps()
 {
     if (!CBBinding.checkInitialized())
     {
         return;
     }
     CBBinding._plugin.Call("showMoreApps", new object[0]);
 }
Esempio n. 2
0
 public static void destroy()
 {
     if (!CBBinding.checkInitialized())
     {
         return;
     }
     CBBinding._plugin.Call("destroy", new object[0]);
     CBBinding.initialized = false;
 }
Esempio n. 3
0
 public static void pause(bool paused)
 {
     if (!CBBinding.checkInitialized())
     {
         return;
     }
     CBBinding._plugin.Call("pause", new object[]
     {
         paused
     });
 }
Esempio n. 4
0
 public static void forceOrientation(ScreenOrientation orient)
 {
     if (!CBBinding.checkInitialized())
     {
         return;
     }
     CBBinding._plugin.Call("forceOrientation", new object[]
     {
         orient.ToString()
     });
 }
Esempio n. 5
0
 public static void cacheInterstitial(string location)
 {
     if (!CBBinding.checkInitialized())
     {
         return;
     }
     if (location == null)
     {
         location = string.Empty;
     }
     CBBinding._plugin.Call("cacheInterstitial", new object[]
     {
         location
     });
 }
Esempio n. 6
0
 public static bool hasCachedInterstitial(string location)
 {
     if (!CBBinding.checkInitialized())
     {
         return(false);
     }
     if (location == null)
     {
         location = string.Empty;
     }
     if (location == null)
     {
         location = string.Empty;
     }
     return(CBBinding._plugin.Call <bool>("hasCachedInterstitial", new object[]
     {
         location
     }));
 }
Esempio n. 7
0
 public static bool isImpressionVisible()
 {
     return(CBBinding.checkInitialized() && CBManager.isImpressionVisible());
 }
Esempio n. 8
0
 public static bool onBackPressed()
 {
     return(CBBinding.checkInitialized() && CBBinding._plugin.Call <bool>("onBackPressed", new object[0]));
 }
Esempio n. 9
0
 public static bool hasCachedMoreApps()
 {
     return(CBBinding.checkInitialized() && CBBinding._plugin.Call <bool>("hasCachedMoreApps", new object[0]));
 }