Ejemplo n.º 1
0
 private void InitEDM4U()
 {
     edmVersion = Utils.GetEDM4UVersion(platform);
     if (edmVersion != null)
     {
         edmRequiredNewer = edmVersion < Utils.minEDM4UVersion;
     }
     try
     {
         if (platform == BuildTarget.iOS)
         {
             edmIOSStaticLinkProp = Type.GetType("Google.IOSResolver, Google.IOSResolver", true)
                                    .GetProperty("PodfileStaticLinkFrameworks", BindingFlags.Public | BindingFlags.Static);
         }
     }
     catch
     {
         edmIOSStaticLinkProp = null;
     }
 }