コード例 #1
0
 /// <summary>
 /// Initialise the FeedHenry SDK. This should be called before any other API functions are invoked. Usually this should be called after the app finish intialising.
 /// </summary>
 /// <example>
 /// <code>
 ///  protected async override void OnCreate (Bundle bundle)
 ///  {
 ///    //other initialisation work
 ///    await  FHClient.Init();
 ///  }
 /// </code>
 /// </example>
 /// <returns>If Init is success or not</returns>
 /// <exception cref="FHException"></exception>
 public new static async Task <bool> Init()
 {
     RegisterServices();
     return(await FH.Init());
 }