コード例 #1
0
 public void RegisterForPushNotifications()
 {
     if (Application.platform == 11)
     {
         this.RegisterForPushNotificationsAndroid();
     }
     else if (Application.platform == 8)
     {
         BLPushManager.RegisterForPushNotificationsIOS();
     }
 }
コード例 #2
0
 public void RegisterForPushNotifications()
 {
     if (Application.platform == RuntimePlatform.Android)
     {
         this.RegisterForPushNotificationsAndroid();
     }
     else if (Application.platform == RuntimePlatform.IPhonePlayer)
     {
         BLPushManager.RegisterForPushNotificationsIOS();
     }
 }