public void __fromnative_OnCallTestFunc1(string str)
 {
     Debug.Log("MyUnityPluginiOSImpl: __fromnative_OnCallTestFunc1");
     if (callbackInterface == null)
     {
         return;
     }
     callbackInterface.OnCallTestFunc1(str);
 }
 public void OnCallTestFunc1(string str)
 {
     Debug.Log("MyUnityPluginAndroidImpl: OnCallTestFunc1");
     if (callbackInterface == null)
     {
         return;
     }
     callbackInterface.OnCallTestFunc1(str);
 }